mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 16:51:09 +08:00
20 lines
385 B
JavaScript
20 lines
385 B
JavaScript
import hbs from 'htmlbars-inline-precompile';
|
|
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'),
|
|
},
|
|
});
|