embed.js 330 B

1234567891011
  1. export function addAppButton(parent) {
  2. var button = globalThis.document.createElement('button');
  3. button.innerText = 'Hello world';
  4. var clickCount = 0;
  5. button.onclick = () => {
  6. clickCount++;
  7. button.innerText = 'Click count ' + clickCount;
  8. };
  9. parent.appendChild(button);
  10. return button;
  11. }