From f3f3e32a433bb0f972b16f3c264ebd6bb18b3030 Mon Sep 17 00:00:00 2001 From: chenwenhui133 <2984202073@qq.com> Date: Tue, 8 Jul 2025 14:21:51 +0800 Subject: [PATCH 1/7] =?UTF-8?q?docs:=20[Issues:=20#ICISQP]=20=E4=BF=AE?= =?UTF-8?q?=E6=94=B9react-native-easy-toast=E7=9A=84=E7=A4=BA=E4=BE=8B?= =?UTF-8?q?=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- en/react-native-easy-toast.md | 15 ++++++++------- zh-cn/react-native-easy-toast.md | 15 ++++++++------- 2 files changed, 16 insertions(+), 14 deletions(-) diff --git a/en/react-native-easy-toast.md b/en/react-native-easy-toast.md index ee642494..0f3fe3c9 100644 --- a/en/react-native-easy-toast.md +++ b/en/react-native-easy-toast.md @@ -40,22 +40,23 @@ The following code shows the basic use scenario of the repository: ```js import React, { Component } from "react"; -import { Text, View, Button } from "react-native"; -import { - Toast -} from "react-native-easy-toast"; +import { View, Button } from "react-native"; +import Toast from "react-native-easy-toast"; export default class App extends Component { - constructor(props) { - super(props); + constructor(props: any) { + super(props); } + + toast: any = null; + render() { return (