Created
January 30, 2019 09:32
-
-
Save ThaddeusJiang/bb53e23a970e861d208d7aa97629a747 to your computer and use it in GitHub Desktop.
simple storybook
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 * as React from 'react'; | |
/* eslint-disable import/no-extraneous-dependencies */ | |
import { storiesOf } from '@storybook/react'; | |
import { action } from '@storybook/addon-actions'; | |
import MyComponent from './index'; | |
storiesOf('component', module).add('MyComponent', () => ( | |
<MyComponent onChange={action('onChange')} /> | |
)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment