Storybook (#122)

* adding storybook

* update webpack config

* Update package.json

* udpating build script
This commit is contained in:
Gavin Foster
2019-06-20 19:43:09 -05:00
committed by Benjamin Boudreau
parent 2c7653ba8b
commit 02d52921ad
7 changed files with 4572 additions and 2 deletions

6
stories/index.stories.js Normal file
View File

@@ -0,0 +1,6 @@
import React from 'react'
import { storiesOf } from '@storybook/react'
import Widget from '../src/components/widget'
storiesOf(`Widget`)
.add(`default`, () => <Widget />)