import React from 'react'; import { storiesOf, action, linkTo } from '@kadira/storybook'; import Button from '../button'; storiesOf('Button', module) .add('with text', () => ( Hello Button )) .add('with some emoji', () => ( 😀 😎 👍 💯 )) .add('secondary', () => ( Hello Button ));