Skip to content

Commit

Permalink
docs(storybook): Footer 컴포넌트 스토리북 생성
Browse files Browse the repository at this point in the history
  • Loading branch information
tteokbokki-master committed Sep 23, 2024
1 parent 33d6290 commit e215d63
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions src/features/layout/footer/Footer.stories.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
import { Meta, StoryObj } from '@storybook/react';
import Footer from '.';
import GlobalStyles from '@/assets/styles/index';

const meta: Meta<typeof Footer> = {
title: 'features/layout/Footer',
decorators: [
(Story) => (
<>
<GlobalStyles />
<Story />
</>
),
],
component: Footer,
tags: ['autodocs'],
};

export default meta;

type Story = StoryObj<typeof Footer>;

export const Default: Story = {
render: () => <Footer />,
};

0 comments on commit e215d63

Please sign in to comment.