From 0a39253677f638e87308ad11358cc1c1cd06f52c Mon Sep 17 00:00:00 2001 From: iven0707 <13296634195@163.com> Date: Mon, 24 Jun 2024 09:26:03 +0800 Subject: [PATCH] =?UTF-8?q?fixed=20525f3a8=20from=20https://gitee.com/lian?= =?UTF-8?q?g-dazhi2/usage-docs/pulls/815=20docs:=20[Issues:=20#IA7LTP]=20?= =?UTF-8?q?=E4=BF=AE=E6=94=B9react-native-material-buttons=E6=8C=87?= =?UTF-8?q?=E5=AF=BC=E6=96=87=E6=A1=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- zh-cn/react-native-material-buttons.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/zh-cn/react-native-material-buttons.md b/zh-cn/react-native-material-buttons.md index 5bd2abce..c460b316 100644 --- a/zh-cn/react-native-material-buttons.md +++ b/zh-cn/react-native-material-buttons.md @@ -128,7 +128,7 @@ let Strong: React.FC<{ children: React.ReactNode }> = ({ children, ...props }) = ); /* eslint-enable */ -export function MaterialButtons() { +const MaterialButtons = () => { return ( @@ -197,6 +197,8 @@ export function MaterialButtons() { ); } +export default MaterialButtons; + ``` -- Gitee