import React from 'react'; import Button from './Button'; import { storiesOf } from '@storybook/react'; import { action } from '@storybook/addon-actions'; storiesOf( 'Button' ).addWithInfo( 'simple usage', 'This is the basic usage with the button with providing a label to show the text.', () => (
) ); storiesOf('Button').addWithInfo( 'simple usage (inline info)', ` This is the basic usage with the button with providing a label to show the text. `, () =>