import React from 'react'; import { storiesOf } from '@storybook/react'; import { action } from '@storybook/addon-actions'; import { linkTo } from '@storybook/addon-links'; import { Button, Welcome } from '@storybook/react/demo'; import ChartWithGridAreaHorizontal from './BasicGridAreaHorizontal'; import ChartWithGridAreaVertical from './BasicGridAreaVertical'; storiesOf('Welcome', module).add('to Storybook', () => ); storiesOf('Button', module) .add('with text', () => ) .add('with some emoji', () => ( )); storiesOf('Grid area', module) .add('Basic Horizontal', () => ) .add('Basic Vertical', () => )