import * as React from 'react' import { storiesOf } from '@storybook/react' import centered from '@storybook/addon-centered/react' import { TagField } from './TagField' storiesOf('TagField', module) .addDecorator(centered) .add('Basic', () => ( <> )) .add('On Change', () => ( <> alert(JSON.stringify(props.value))} /> )) .add('Error', () => ( <> )) .add('Default values', () => ( <> ))