Organize stories into folders

This commit is contained in:
Gabe Kangas 2022-05-17 14:24:48 -07:00
parent 8ce045aa9a
commit 8925e1b4e2
No known key found for this signature in database
GPG key ID: 9A56337728BC81EA
9 changed files with 9 additions and 9 deletions

View file

@ -3,7 +3,7 @@ import { ComponentStory, ComponentMeta } from '@storybook/react';
import ActionButton from '../components/action-buttons/ActionButton'; import ActionButton from '../components/action-buttons/ActionButton';
export default { export default {
title: 'owncast/Action Buttons/Single button', title: 'owncast/Components/Action Buttons/Single button',
component: ActionButton, component: ActionButton,
parameters: { parameters: {
docs: { docs: {

View file

@ -4,7 +4,7 @@ import ActionButtonRow from '../components/action-buttons/ActionButtonRow';
import ActionButton from '../components/action-buttons/ActionButton'; import ActionButton from '../components/action-buttons/ActionButton';
export default { export default {
title: 'owncast/Action Buttons/Buttons Row', title: 'owncast/Components/Action Buttons/Buttons Row',
component: ActionButtonRow, component: ActionButtonRow,
parameters: { parameters: {
docs: { docs: {

View file

@ -3,7 +3,7 @@ import { ComponentStory, ComponentMeta } from '@storybook/react';
import CustomPageContent from '../components/CustomPageContent'; import CustomPageContent from '../components/CustomPageContent';
export default { export default {
title: 'owncast/Custom page content', title: 'owncast/Components/Custom page content',
component: CustomPageContent, component: CustomPageContent,
parameters: {}, parameters: {},
} as ComponentMeta<typeof CustomPageContent>; } as ComponentMeta<typeof CustomPageContent>;

View file

@ -3,7 +3,7 @@ import { ComponentStory, ComponentMeta } from '@storybook/react';
import SingleFollower from '../components/Follower'; import SingleFollower from '../components/Follower';
export default { export default {
title: 'owncast/Followers/Single Follower', title: 'owncast/Components/Followers/Single Follower',
component: SingleFollower, component: SingleFollower,
parameters: {}, parameters: {},
} as ComponentMeta<typeof SingleFollower>; } as ComponentMeta<typeof SingleFollower>;

View file

@ -3,7 +3,7 @@ import { ComponentStory, ComponentMeta } from '@storybook/react';
import FollowerCollection from '../components/FollowersCollection'; import FollowerCollection from '../components/FollowersCollection';
export default { export default {
title: 'owncast/Followers/Followers collection', title: 'owncast/Components/Followers/Followers collection',
component: FollowerCollection, component: FollowerCollection,
parameters: {}, parameters: {},
} as ComponentMeta<typeof FollowerCollection>; } as ComponentMeta<typeof FollowerCollection>;

View file

@ -13,7 +13,7 @@ const Example = args => (
); );
export default { export default {
title: 'owncast/Notify Reminder', title: 'owncast/Components/Notify Reminder',
component: NotifyReminder, component: NotifyReminder,
parameters: { parameters: {
design: { design: {

View file

@ -3,7 +3,7 @@ import { ComponentStory, ComponentMeta } from '@storybook/react';
import { OwncastLogo } from '../components/common'; import { OwncastLogo } from '../components/common';
export default { export default {
title: 'owncast/Logo', title: 'owncast/Components/Logo',
component: OwncastLogo, component: OwncastLogo,
parameters: {}, parameters: {},
} as ComponentMeta<typeof OwncastLogo>; } as ComponentMeta<typeof OwncastLogo>;

View file

@ -3,7 +3,7 @@ import { ComponentStory, ComponentMeta } from '@storybook/react';
import SocialLinks from '../components/ui/SocialLinks/SocialLinks'; import SocialLinks from '../components/ui/SocialLinks/SocialLinks';
export default { export default {
title: 'owncast/Social links', title: 'owncast/Components/Social links',
component: SocialLinks, component: SocialLinks,
parameters: {}, parameters: {},
} as ComponentMeta<typeof SocialLinks>; } as ComponentMeta<typeof SocialLinks>;

View file

@ -5,7 +5,7 @@ import { UserDropdown } from '../components/common';
import { ChatState } from '../interfaces/application-state'; import { ChatState } from '../interfaces/application-state';
export default { export default {
title: 'owncast/User settings menu', title: 'owncast/Components/User settings menu',
component: UserDropdown, component: UserDropdown,
parameters: {}, parameters: {},
} as ComponentMeta<typeof UserDropdown>; } as ComponentMeta<typeof UserDropdown>;