import React, { FunctionComponent } from 'react'; import { storiesOf } from '@storybook/react'; import { DeleteButton } from './DeleteButton'; const CenteredStory: FunctionComponent<{}> = ({ children }) => { return (
{children}
); }; storiesOf('UI/DeleteButton', module) .addDecorator(story => {story()}) .add('default', () => { return {}} />; });