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