accounts-frontend/packages/app/components/contact/ContactFormPopup.story.tsx

17 lines
439 B
TypeScript
Raw Normal View History

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')}
/>
));