/* eslint-disable import/extensions */ import hbs from 'htmlbars-inline-precompile'; import { storiesOf } from '@storybook/ember'; import notes from './toggle-button.md'; storiesOf('ToggleButton', module) .addParameters({ options: { showPanel: false } }) .add( 'ToggleButton', () => ({ template: hbs` `, }), { notes } ) .add( 'ToggleButton with content', () => ({ template: hbs` {{#if showOptions}}

I will be toggled!

{{/if}} `, }), { notes } );