mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
17 lines
394 B
JavaScript
17 lines
394 B
JavaScript
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);
|