mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-12-03 20:19:07 +05:30
82abe0a746
Split popups controllers into separate components Implemented storybooks for all project's popups
17 lines
439 B
TypeScript
17 lines
439 B
TypeScript
import React from 'react';
|
|
import { storiesOf } from '@storybook/react';
|
|
import { action } from '@storybook/addon-actions';
|
|
|
|
import ContactFormPopup from './ContactFormPopup';
|
|
|
|
storiesOf('Components/Popups', module).add('ContactFormPopup', () => (
|
|
<ContactFormPopup
|
|
onSubmit={(params) => {
|
|
action('onSubmit')(params);
|
|
|
|
return Promise.resolve();
|
|
}}
|
|
onClose={action('onClose')}
|
|
/>
|
|
));
|