import React from 'react';
import { storiesOf } from '@storybook/react';
import { action } from '@storybook/addon-actions';
import { StoryContainer } from './helpers';
import { Select } from '../src';
const options = ['Foo', 'Bar', 'Baz'];
const options2 = [
{
value: '1',
label: 'One',
},
{
value: '2',
label: 'Two',
}
];
export default storiesOf('Select', module)
.addDecorator((getStory) => (
{ getStory() }
))
.addWithInfo('Default', () => (
))
.addWithInfo('with an error', () => (
))
.addWithInfo('disabled', () => (
))
.addWithInfo('with help text', () => (
));