import React from 'react';
import { storiesOf } from '@storybook/react-native';
import { withKnobs } from '@storybook/addon-knobs';
import Wrapper from './../../Wrapper';
import { Example as Usage } from './Usage';
import { Example as CustomStyle } from './CustomStyle';
import { Example as Playground } from './Playground';
storiesOf('FormControl', module)
.addDecorator(withKnobs)
.addDecorator((getStory: any) => {getStory()})
.add('Playground', () => )
.add('Usage', () => )
.add('CustomStyle', () => );