import React from 'react';
import { storiesOf } from '@storybook/react';
import { action } from '@storybook/addon-actions';
import { StoryContainer } from './helpers';
import { TextField, Button, Select, Icon } from '../src';
export default storiesOf('TextField', module)
.addDecorator((getStory) => (
{ getStory() }
))
.addWithInfo('Default', () => (
))
.addWithInfo('with an error', () => (
))
.addWithInfo('multiline', () => (
))
.addWithInfo('disabled', () => (
))
.addWithInfo('with help text', () => (
))
.addWithInfo('with connected components', () => (
Injection Time}
connectRight={}
/>
));