* Renamed Components Storybook grouping to App Components. * Design system components are now grouped under Components in Storybook. * Split up Typography stories.
9 lines
350 B
JavaScript
9 lines
350 B
JavaScript
import { h } from 'preact';
|
|
import { storiesOf } from '@storybook/react';
|
|
import { LoadingArticle } from '..';
|
|
import '../../../assets/stylesheets/articles.scss';
|
|
import { articleDecorator } from './articleDecorator';
|
|
|
|
storiesOf('App Components/Article', module)
|
|
.addDecorator(articleDecorator)
|
|
.add('Article Loading', () => <LoadingArticle />);
|