Created
November 1, 2017 15:56
-
-
Save viniciusdacal/1926cb92061a92b7d87d6499b5701664 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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'; | |
storiesOf('Welcome', module).add('to Storybook', () => <Welcome showApp={linkTo('Button')} />); | |
storiesOf('Button', module) | |
.add('with text', () => <Button onClick={action('clicked')}>Hello Button</Button>) | |
.add('with some emoji', () => <Button onClick={action('clicked')}>π π π π―</Button>); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment