Merge in react-storybook, add yarn lockfile
This commit is contained in:
commit
ffaba617d2
7 changed files with 4801 additions and 1 deletions
16
storybook/config.js
Normal file
16
storybook/config.js
Normal file
|
@ -0,0 +1,16 @@
|
|||
import { configure } from '@kadira/storybook';
|
||||
import React from 'react';
|
||||
import { storiesOf, action } from '@kadira/storybook';
|
||||
|
||||
import './storybook.css'
|
||||
|
||||
window.storiesOf = storiesOf;
|
||||
window.action = action;
|
||||
window.React = React;
|
||||
|
||||
function loadStories () {
|
||||
require('./stories/loading_indicator.story.jsx');
|
||||
require('./stories/button.story.jsx');
|
||||
}
|
||||
|
||||
configure(loadStories, module);
|
Loading…
Add table
Add a link
Reference in a new issue