You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
394 B
17 lines
394 B
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);
|