UNPKG

xchain-components

Version:
15 lines (12 loc) 450 B
/* @flow */ /* eslint react/jsx-filename-extension: 0 */ import React from 'react'; import { storiesOf } from '@storybook/react'; import { action } from '@storybook/addon-actions'; import { withInfo } from '@storybook/addon-info'; import XImage from 'components/XImage'; export default storiesOf('XImage', module) .addDecorator(withInfo) .add('image', () => ( <XImage src="https://react.semantic-ui.com/images/wireframe/image.png" /> ));