From e215d6359ddd741629c17895002a188e4daef6e8 Mon Sep 17 00:00:00 2001 From: tteokbokki-master <0jin.git@gmail.com> Date: Tue, 24 Sep 2024 00:17:18 +0900 Subject: [PATCH] =?UTF-8?q?docs(storybook):=20Footer=20=EC=BB=B4=ED=8F=AC?= =?UTF-8?q?=EB=84=8C=ED=8A=B8=20=EC=8A=A4=ED=86=A0=EB=A6=AC=EB=B6=81=20?= =?UTF-8?q?=EC=83=9D=EC=84=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/features/layout/footer/Footer.stories.tsx | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 src/features/layout/footer/Footer.stories.tsx diff --git a/src/features/layout/footer/Footer.stories.tsx b/src/features/layout/footer/Footer.stories.tsx new file mode 100644 index 0000000..3c2126f --- /dev/null +++ b/src/features/layout/footer/Footer.stories.tsx @@ -0,0 +1,25 @@ +import { Meta, StoryObj } from '@storybook/react'; +import Footer from '.'; +import GlobalStyles from '@/assets/styles/index'; + +const meta: Meta = { + title: 'features/layout/Footer', + decorators: [ + (Story) => ( + <> + + + + ), + ], + component: Footer, + tags: ['autodocs'], +}; + +export default meta; + +type Story = StoryObj; + +export const Default: Story = { + render: () =>