From 901f59e3ae92a179e6fe2725cef1e31121fd7978 Mon Sep 17 00:00:00 2001 From: gxxrxn Date: Sun, 15 Oct 2023 10:54:57 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20NormalToast=20=EB=B3=80=EC=88=98?= =?UTF-8?q?=EB=AA=85=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/stories/Base/Toast.stories.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/stories/Base/Toast.stories.tsx b/src/stories/Base/Toast.stories.tsx index 52a8dc0f..2350c910 100644 --- a/src/stories/Base/Toast.stories.tsx +++ b/src/stories/Base/Toast.stories.tsx @@ -14,7 +14,7 @@ export default meta; type Story = StoryObj; -const DefaultToast = () => { +const NormalToast = () => { const toast = useToast(); const handleButtonClick = () => toast.show({ type: 'normal', message: '토스트 메시지에요' }); @@ -46,7 +46,7 @@ export const Default: Story = { }; export const Normal: Story = { - render: DefaultToast, + render: NormalToast, }; export const Success: Story = {