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.
2017-06-04 07:26:07 -07:00
|
|
|
import { configure } from '@storybook/react';
|
2016-12-14 09:21:31 -08:00
|
|
|
import { addLocaleData } from 'react-intl';
|
|
|
|
import en from 'react-intl/locale-data/en';
|
2017-05-13 06:55:56 -07:00
|
|
|
import '../app/javascript/styles/application.scss';
|
|
|
|
import './storybook.scss';
|
2016-10-10 18:21:06 -07:00
|
|
|
|
2016-12-14 09:21:31 -08:00
|
|
|
addLocaleData(en);
|
2016-10-10 19:07:32 -07:00
|
|
|
|
2017-05-13 06:55:56 -07:00
|
|
|
let req = require.context('./stories/', true, /.story.js$/);
|
2017-04-18 07:04:35 -07:00
|
|
|
|
2016-10-10 18:21:06 -07:00
|
|
|
function loadStories () {
|
2017-05-20 08:31:47 -07:00
|
|
|
req.keys().forEach((filename) => req(filename));
|
2016-10-10 18:21:06 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
configure(loadStories, module);
|