import React from 'react';
import { storiesOf } from '@storybook/react';
import Faker from 'faker';
import { checkA11y } from './../../../src';
import Button from './component';
const text = Faker.lorem.words();
storiesOf('', module)
.addDecorator(checkA11y)
.add('Default', () => )
.add('Content', () => )
.add('Label', () => )
.add('Disabled', () => )
.add('Invalid contrast', () => );