import React from 'react';
import { storiesOf } from '@storybook/react-native';
import { withKnobs } from '@storybook/addon-knobs';
import Wrapper from './../../Wrapper';
import {
DefaultInput,
SizeInput,
VariantInput,
InputAddons,
InputELements,
PasswordInput,
ControlledInput,
FocusErrorBorderColor,
} from './example';
storiesOf('Input', module)
.addDecorator(withKnobs)
.addDecorator((getStory: any) => {getStory()})
.add('Primary', () => )
.add('Size Input', () => )
.add('Input Variants', () => )
.add('Input Addons', () => )
.add('Input Elements', () => )
.add('Input Password', () => )
.add('Value Controlled Input', () => )
.add('Focus and Error Border Color Change', () => );