mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
* Add Button example * Add semicolon behind import * Add Image example * Add Form examples * Add Typography examples
30 lines
548 B
JavaScript
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}
|
|
/>
|
|
));
|