open-vault/ui/stories/doc-link.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
442 B
JavaScript

/* eslint-disable import/extensions */
import hbs from 'htmlbars-inline-precompile';
import { storiesOf } from '@storybook/ember';
import notes from './doc-link.md';
storiesOf('DocLink/', module)
.addParameters({ options: { showPanel: true } })
.add(`DocLink`, () => ({
template: hbs`
<h5 class="title is-5">Doc Link</h5>
<DocLink @path="/docs/secrets/kv/kv-v2.html">Learn about KV v2</DocLink>
`
}),
{notes}
);