/* eslint-disable import/extensions */ import hbs from 'htmlbars-inline-precompile'; import { storiesOf } from '@storybook/ember'; import { withKnobs, select } from '@storybook/addon-knobs'; import notes from './chevron.md'; storiesOf('Chevron/', module) .addParameters({ options: { showPanel: true } }) .addDecorator(withKnobs()) .add(`Chevron`, () => ({ template: hbs`
Chevron
`, context: { direction: select('Direction', ['right', 'down', 'left', 'up'], 'right'), }, }), {notes} );