import hbs from 'htmlbars-inline-precompile'; import { storiesOf } from '@storybook/ember'; import notes from './auth-form.md'; storiesOf('AuthForm', module) .addParameters({ options: { showPanel: false } }) .add( `AuthForm`, () => ({ template: hbs`
Auth Form
`, context: {}, }), { notes } );