From 943b443080e601a7c6dd4c9351e7a7fc59815f2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=A0=95=ED=98=84=EC=A1=B0?= Date: Mon, 9 Sep 2024 15:04:48 +0900 Subject: [PATCH] =?UTF-8?q?Refactor:=20=EC=8A=A4=ED=86=A0=EB=A6=AC?= =?UTF-8?q?=EB=B6=81=20preview=20=ED=8C=8C=EC=9D=BC=20=EB=B3=80=EA=B2=BD?= =?UTF-8?q?=EC=97=90=20=EB=94=B0=EB=A5=B8=20AdminLayout=20=EC=8A=A4?= =?UTF-8?q?=ED=86=A0=EB=A6=AC=EB=B6=81=20=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/components/AdminLayout/index.stories.tsx | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/frontend/src/components/AdminLayout/index.stories.tsx b/frontend/src/components/AdminLayout/index.stories.tsx index 9b60b9c..286576f 100644 --- a/frontend/src/components/AdminLayout/index.stories.tsx +++ b/frontend/src/components/AdminLayout/index.stories.tsx @@ -1,7 +1,6 @@ import '@/index.css'; import { Meta, StoryObj } from '@storybook/react'; import AdminLayout from './index'; -import { BrowserRouter as Router } from 'react-router-dom'; import { Workspace } from '@/types'; const meta: Meta = { @@ -36,9 +35,5 @@ const workspace: Workspace = { }; export const Default: Story = { - render: () => ( - - - - ), + render: () => , };