mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-12-03 20:19:07 +05:30
14 lines
418 B
TypeScript
14 lines
418 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 AccountDeleted from './AccountDeleted';
|
|
|
|
storiesOf('Components/Profile', module).add('AccountDeleted', () => (
|
|
<ProfileLayout>
|
|
<AccountDeleted onRestore={action('onRestore')} />
|
|
</ProfileLayout>
|
|
));
|