mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
10 lines
220 B
JavaScript
10 lines
220 B
JavaScript
/* eslint-disable no-undef */
|
|
export const Button = (args) => {
|
|
const button = document.createElement('button');
|
|
|
|
button.innerHTML = args.label;
|
|
button.addEventListener('click', args.onClick);
|
|
|
|
return button;
|
|
};
|