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 ManageFocus from './ManageFocus';
import DefaultValue from './DefaultValue';
import Size from './Size';
import Playground from './Playground';
import Variants from './Variants';
import FormControlled from './FormControlled';
import Placeholder from './Placeholder';
storiesOf('PinInput', module)
.addDecorator(withKnobs)
.addDecorator((getStory: any) => {getStory()})
.add('Playground', () => )
.add('Usage', () => )
.add('Size', () => )
.add('DefaultValue', () => )
.add('Placeholder', () => )
.add('ManageFocus', () => )
.add('Variants', () => )
.add('FormControlled', () => );