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