mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 21:01:08 +08:00
19 lines
380 B
JavaScript
19 lines
380 B
JavaScript
import { hbs } from 'ember-cli-htmlbars';
|
|
import { action } from '@storybook/addon-actions';
|
|
|
|
export default {
|
|
title: 'Addon/Actions',
|
|
parameters: {
|
|
options: {
|
|
selectedPanel: 'storybook/actions/panel',
|
|
},
|
|
},
|
|
};
|
|
|
|
export const Button = () => ({
|
|
template: hbs`<button {{action onClick}}>Click Me</button>`,
|
|
context: {
|
|
onClick: action('clicked'),
|
|
},
|
|
});
|