From 3b16da80b993c2118051ae00a3cb543ea0a97868 Mon Sep 17 00:00:00 2001 From: sujk912 Date: Sun, 1 Jan 2023 15:51:38 +0900 Subject: [PATCH] =?UTF-8?q?Example.tsx=20=EA=B4=84=ED=98=B8=20=EC=A0=95?= =?UTF-8?q?=EB=A6=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Example/Example.tsx | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/components/Example/Example.tsx b/src/components/Example/Example.tsx index 29c8dd2..5692b57 100644 --- a/src/components/Example/Example.tsx +++ b/src/components/Example/Example.tsx @@ -7,11 +7,7 @@ interface MyButtonProps { } const MyButton = ({ title }: MyButtonProps) => { - return ( - <> - {title} - - ); + return {title}; }; export default MyButton;