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 HelloWorld from '../components'
storiesOf('Welcome', module).add('to Storybook', () => (
))
storiesOf('Button', module)
.add('with text', () => (
))
.add('with some emoji', () => (
))
storiesOf('HelloWorld', module).add('simple component', () => )