/* 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`
Doc Link
Learn about KV v2 ` }), {notes} );