Skip to content

Commit

Permalink
Merge pull request #973 from 42organization/GGFE-227-스토리북-확성기
Browse files Browse the repository at this point in the history
[GGFE-227] Megaphone-storybook 추가
  • Loading branch information
yoouyeon authored Sep 5, 2023
2 parents c83235f + 2092ff5 commit 386b088
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react';
import { CurrentMatchContent } from 'components/Layout/CurrentMatch';

const meta: Meta<typeof CurrentMatchContent> = {
title: 'MainPageProfile/CurrentMatch',
title: 'Layout/CurrentMatch',
component: CurrentMatchContent,
tags: ['autodocs'],
argTypes: {
Expand Down
16 changes: 16 additions & 0 deletions stories/layout/Megaphone.stories.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import type { Meta, StoryObj } from '@storybook/react';
import Megaphone from 'components/Layout/MegaPhone';

const meta: Meta<typeof Megaphone> = {
title: 'Layout/Megaphone',
component: Megaphone,
tags: ['autodocs'],
argTypes: {},
};

export default meta;
type Story = StoryObj<typeof Megaphone>;

export const Default: Story = {
args: {},
};

0 comments on commit 386b088

Please sign in to comment.