This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-10-10 18:21:06 -07:00
|
|
|
import { configure } from '@kadira/storybook';
|
|
|
|
import React from 'react';
|
|
|
|
import { storiesOf, action } from '@kadira/storybook';
|
|
|
|
|
2016-10-10 19:07:32 -07:00
|
|
|
import './storybook.css'
|
|
|
|
|
2016-10-10 18:21:06 -07:00
|
|
|
window.storiesOf = storiesOf;
|
2016-10-12 03:08:57 -07:00
|
|
|
window.action = action;
|
|
|
|
window.React = React;
|
2016-10-10 18:21:06 -07:00
|
|
|
|
|
|
|
function loadStories () {
|
|
|
|
require('./stories/loading_indicator.story.jsx');
|
2016-10-10 19:07:32 -07:00
|
|
|
require('./stories/button.story.jsx');
|
2016-10-17 17:54:49 -07:00
|
|
|
require('./stories/tabs_bar.story.jsx');
|
2016-10-10 18:21:06 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
configure(loadStories, module);
|