diff --git a/stories/mainProfile/CurrentMatch.stories.tsx b/stories/layout/CurrentMatch.stories.tsx similarity index 97% rename from stories/mainProfile/CurrentMatch.stories.tsx rename to stories/layout/CurrentMatch.stories.tsx index 465159145..223d528ed 100644 --- a/stories/mainProfile/CurrentMatch.stories.tsx +++ b/stories/layout/CurrentMatch.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react'; import { CurrentMatchContent } from 'components/Layout/CurrentMatch'; const meta: Meta = { - title: 'MainPageProfile/CurrentMatch', + title: 'Layout/CurrentMatch', component: CurrentMatchContent, tags: ['autodocs'], argTypes: { diff --git a/stories/layout/Megaphone.stories.tsx b/stories/layout/Megaphone.stories.tsx new file mode 100644 index 000000000..0ffeab9a2 --- /dev/null +++ b/stories/layout/Megaphone.stories.tsx @@ -0,0 +1,16 @@ +import type { Meta, StoryObj } from '@storybook/react'; +import Megaphone from 'components/Layout/MegaPhone'; + +const meta: Meta = { + title: 'Layout/Megaphone', + component: Megaphone, + tags: ['autodocs'], + argTypes: {}, +}; + +export default meta; +type Story = StoryObj; + +export const Default: Story = { + args: {}, +};