From a08291b1586858fc894a27d56f55f87a88f8dbd3 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Wed, 20 Apr 2022 19:24:21 +0200 Subject: refactor(storybook): reorganize design system Add more stories for each components and change some components categories for better organization. --- src/components/atoms/layout/section.stories.tsx | 33 +++++++++++++++++++------ 1 file changed, 25 insertions(+), 8 deletions(-) (limited to 'src/components/atoms/layout/section.stories.tsx') diff --git a/src/components/atoms/layout/section.stories.tsx b/src/components/atoms/layout/section.stories.tsx index abbbeed..530b2a0 100644 --- a/src/components/atoms/layout/section.stories.tsx +++ b/src/components/atoms/layout/section.stories.tsx @@ -1,9 +1,12 @@ import { ComponentMeta, ComponentStory } from '@storybook/react'; -import SectionComponent from './section'; +import Section from './section'; +/** + * Section - Storybook Meta + */ export default { - title: 'Atoms/Layout', - component: SectionComponent, + title: 'Atoms/Layout/Section', + component: Section, args: { variant: 'dark', withBorder: true, @@ -72,14 +75,28 @@ export default { }, }, }, -} as ComponentMeta; +} as ComponentMeta; -const Template: ComponentStory = (args) => ( - +const Template: ComponentStory = (args) => ( +
); -export const Section = Template.bind({}); -Section.args = { +/** + * Section Stories - Light + */ +export const Light = Template.bind({}); +Light.args = { title: 'A title', content: 'The content.', + variant: 'light', +}; + +/** + * Section Stories - Dark + */ +export const Dark = Template.bind({}); +Dark.args = { + title: 'A title', + content: 'The content.', + variant: 'dark', }; -- cgit v1.2.3