open-vault/ui/stories/layout-loading.stories.js
Matthew Irish 0ccc8467ec
UI ember engines (#6718)
Adds replication engine and core in-repo addon
2019-05-13 14:05:25 -05:00

17 lines
439 B
JavaScript

/* eslint-disable import/extensions */
import hbs from 'htmlbars-inline-precompile';
import { storiesOf } from '@storybook/ember';
import notes from './layout-loading.md';
storiesOf('Loading/LayoutLoading/', module)
.addParameters({ options: { showPanel: true } })
.add(`LayoutLoading`, () => ({
template: hbs`
<h5 class="title is-5">Layout Loading</h5>
<LayoutLoading/>
`,
context: {},
}),
{notes}
);