accounts-frontend/packages/app/components/sourceCode/SourceCodePopup.story.tsx
2020-07-12 01:57:40 +03:00

8 lines
293 B
TypeScript

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