From 0f936ec0e7606cb79434d94096b6e113a7ce78eb Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Fri, 15 Dec 2023 18:35:16 +0100 Subject: refactor(stories): migrate stories to CSF3 format --- .../atoms/layout/section/section.stories.tsx | 37 ---------------------- 1 file changed, 37 deletions(-) delete mode 100644 src/components/atoms/layout/section/section.stories.tsx (limited to 'src/components/atoms/layout/section/section.stories.tsx') diff --git a/src/components/atoms/layout/section/section.stories.tsx b/src/components/atoms/layout/section/section.stories.tsx deleted file mode 100644 index fdc8217..0000000 --- a/src/components/atoms/layout/section/section.stories.tsx +++ /dev/null @@ -1,37 +0,0 @@ -import type { ComponentMeta, ComponentStory } from '@storybook/react'; -import { Heading } from '../../heading'; -import { Section as SectionComponent } from './section'; - -/** - * Section - Storybook Meta - */ -export default { - title: 'Atoms/Layout/Section', - component: SectionComponent, - argTypes: { - children: { - description: 'The section contents.', - type: { - name: 'function', - required: true, - }, - }, - }, -} as ComponentMeta; - -const Template: ComponentStory = (args) => ( - -); - -/** - * Section Story - */ -export const Section = Template.bind({}); -Section.args = { - children: ( - <> - A section title -
The body
- - ), -}; -- cgit v1.2.3