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. --- .../organisms/forms/contact-form.stories.tsx | 29 +++++++++++++++------- 1 file changed, 20 insertions(+), 9 deletions(-) (limited to 'src/components/organisms/forms/contact-form.stories.tsx') diff --git a/src/components/organisms/forms/contact-form.stories.tsx b/src/components/organisms/forms/contact-form.stories.tsx index 2c8ab32..9b936f9 100644 --- a/src/components/organisms/forms/contact-form.stories.tsx +++ b/src/components/organisms/forms/contact-form.stories.tsx @@ -1,10 +1,13 @@ import { ComponentMeta, ComponentStory } from '@storybook/react'; import { IntlProvider } from 'react-intl'; -import ContactFormComponent from './contact-form'; +import ContactForm from './contact-form'; +/** + * ContactForm - Storybook Meta + */ export default { title: 'Organisms/Forms', - component: ContactFormComponent, + component: ContactForm, argTypes: { className: { control: { @@ -43,16 +46,24 @@ export default { }, }, }, -} as ComponentMeta; + decorators: [ + (Story) => ( + + + + ), + ], +} as ComponentMeta; -const Template: ComponentStory = (args) => ( - - - +const Template: ComponentStory = (args) => ( + ); -export const ContactForm = Template.bind({}); -ContactForm.args = { +/** + * Forms Stories - Contact + */ +export const Contact = Template.bind({}); +Contact.args = { sendMail: (reset: () => void) => { reset(); }, -- cgit v1.2.3