Guest User

Untitled

a guest
Oct 19th, 2017
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. /* eslint no-unused-vars: 0 */
  2.  
  3. import React from 'react'
  4.  
  5. import { storiesOf } from '@storybook/react'
  6. import { withInfo } from '@storybook/addon-info'
  7. import { withKnobs } from '@storybook/addon-knobs'
  8.  
  9. import Test from 'test'
  10.  
  11. const stories = storiesOf('Test', module)
  12. stories.addDecorator(withKnobs)
  13.  
  14. stories.add(
  15. 'Test',
  16. withInfo('')(() => <Test />),
  17. )
Add Comment
Please, Sign In to add comment