UNPKG

@storybook/html

Version:
10 lines (7 loc) 220 B
/* eslint-disable no-undef */ export const Button = (args) => { const button = document.createElement('button'); button.innerHTML = args.label; button.addEventListener('click', args.onClick); return button; };