docbrown/app/javascript/articles/__stories__/LoadingArticle.stories.jsx
Nick Taylor ccf7e6e5bf
Upgrade to webpacker/webpack 4 and Babel 7 (#6664)
Upgraded to webpacker 4/webpack 4 and Babel 7
2020-03-17 08:20:36 -04:00

8 lines
304 B
JavaScript

import { h } from 'preact';
import { LoadingArticle } from '..';
import '../../../assets/stylesheets/articles.scss';
import { articleDecorator } from './articleDecorator';
storiesOf('App Components/Article', module)
.addDecorator(articleDecorator)
.add('Article Loading', () => <LoadingArticle />);