Introduce storybooks for all profile pages

This commit is contained in:
ErickSkrauch
2020-07-21 15:30:18 +03:00
parent 347fd59319
commit 19a9f952ea
15 changed files with 601 additions and 391 deletions

View File

@@ -0,0 +1,23 @@
import React from 'react';
import { storiesOf } from '@storybook/react';
import { action } from '@storybook/addon-actions';
import { FormModel } from 'app/components/ui/form';
import { ProfileLayout } from 'app/components/profile/Profile.story';
import ChangeUsername from './ChangeUsername';
storiesOf('Components/Profile', module).add('ChangeUsername', () => (
<ProfileLayout>
<ChangeUsername
form={new FormModel()}
username="InitialUsername"
onChange={action('onChange')}
onSubmit={(form) => {
action('onSubmit')(form);
return Promise.resolve();
}}
/>
</ProfileLayout>
));