open-vault/ui/stories/ttl-picker.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
393 B
JavaScript

/* eslint-disable import/extensions */
import hbs from 'htmlbars-inline-precompile';
import { storiesOf } from '@storybook/ember';
import notes from './ttl-picker.md';
storiesOf('TtlPicker/', module)
.addParameters({ options: { showPanel: false } })
.add(`TtlPicker`, () => ({
template: hbs`
<h5 class="title is-5">Ttl Picker</h5>
<TtlPicker />
`,
}),
{notes}
);