mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-12-05 04:59:26 +05:30
20 lines
516 B
TypeScript
20 lines
516 B
TypeScript
import React from 'react';
|
|
import { storiesOf } from '@storybook/react';
|
|
import { action } from '@storybook/addon-actions';
|
|
|
|
import { ProfileLayout } from 'app/components/profile/Profile.story';
|
|
|
|
import DeleteAccount from './DeleteAccount';
|
|
|
|
storiesOf('Components/Profile', module).add('DeleteAccount', () => (
|
|
<ProfileLayout>
|
|
<DeleteAccount
|
|
onSubmit={() => {
|
|
action('onSubmit')();
|
|
|
|
return Promise.resolve();
|
|
}}
|
|
/>
|
|
</ProfileLayout>
|
|
));
|