mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-11-30 10:42:34 +05:30
24 lines
696 B
TypeScript
24 lines
696 B
TypeScript
|
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>
|
||
|
));
|