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';
export default {
title: 'owncast/Action Buttons/Single button',
title: 'owncast/Components/Action Buttons/Single button',
component: ActionButton,
parameters: {
docs: {

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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