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.
16 lines
408 B
16 lines
408 B
import { configure } from '@storybook/react';
|
|
import { addLocaleData } from 'react-intl';
|
|
import en from 'react-intl/locale-data/en';
|
|
import '../app/javascript/styles/application.scss';
|
|
import './storybook.scss';
|
|
|
|
addLocaleData(en);
|
|
|
|
let req = require.context('./stories/', true, /.story.js$/);
|
|
|
|
function loadStories () {
|
|
req.keys().forEach((filename) => req(filename));
|
|
}
|
|
|
|
configure(loadStories, module);
|