accounts-frontend/packages/app/components/sourceCode/SourceCodePopup.story.tsx

8 lines
293 B
TypeScript
Raw Normal View History

2020-07-10 00:29:54 +05:30
import React from 'react';
import { storiesOf } from '@storybook/react';
import { action } from '@storybook/addon-actions';
import SourceCodePopup from './SourceCodePopup';
storiesOf('Components/Popups', module).add('SourceCodePopup', () => <SourceCodePopup onClose={action('onClose')} />);