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