import hbs from 'htmlbars-inline-precompile';
import { storiesOf } from '@storybook/ember';
import { action } from '@storybook/addon-actions';
storiesOf('Addon|Actions', module)
.addParameters({ options: { selectedAddonPanel: 'storybook/actions/panel' } })
.add('button', () => ({
template: hbs``,
context: {
onClick: action('clicked'),
},
}));