Skip to content

Instantly share code, notes, and snippets.

@ThaddeusJiang
Created January 30, 2019 09:32
Show Gist options
  • Save ThaddeusJiang/bb53e23a970e861d208d7aa97629a747 to your computer and use it in GitHub Desktop.
Save ThaddeusJiang/bb53e23a970e861d208d7aa97629a747 to your computer and use it in GitHub Desktop.
simple storybook
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