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 { DemoComponent } from '../src/demo-component'
storiesOf('DemoComponent', module).add('to Storybook', () => (
Hello world
))
storiesOf('Welcome', module).add('to Storybook', () => (
))
storiesOf('Button', module)
.add('with text', () => (
))
.add('with some emoji', () => (
))