accounts-frontend/packages/app/components/profile/deleteAccount/DeleteAccount.story.tsx
2020-08-04 13:48:16 +03:00

18 lines
479 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={async () => {
action('onSubmit')();
}}
/>
</ProfileLayout>
));