Jaco Bovenschen 0266c97dc5 Create more example stories (#1)
* Add Button example

* Add semicolon behind import

* Add Image example

* Add Form examples

* Add Typography examples
2017-11-11 22:00:21 +01:00

30 lines
548 B
JavaScript

import React from 'react';
import { storiesOf } from '@kadira/storybook';
import { checkA11y } from './../../../src';
import Image from './component';
import Faker from 'faker';
const image = Faker.image.animals();
const alt = Faker.lorem.words();
storiesOf('<Image />', module)
.addDecorator(checkA11y)
.add('Without alt', () => (
<Image src={image} />
))
.add('With alt', () => (
<Image
src={image}
alt={alt}
/>
))
.add('Presentation', () => (
<Image
presentation
src={image}
/>
));