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