UNPKG

@storybook/html

Version:

Storybook HTML renderer: Develop, document, and test UI components in isolation

9 lines (6 loc) 190 B
export const Button = (args) => { const button = document.createElement('button'); button.innerHTML = args.label; button.addEventListener('click', args.onClick); return button; };