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
437 B

  1. import { configure } from '@kadira/storybook';
  2. import React from 'react';
  3. import { storiesOf, action } from '@kadira/storybook';
  4. import './storybook.css'
  5. window.storiesOf = storiesOf;
  6. window.action = action;
  7. window.React = React;
  8. function loadStories () {
  9. require('./stories/loading_indicator.story.jsx');
  10. require('./stories/button.story.jsx');
  11. require('./stories/tabs_bar.story.jsx');
  12. }
  13. configure(loadStories, module);