My new component

This is a brief description of what my component does

Getting started

Start writing your documentation here...

Add-on demo

const gatherInput = event => {
  let button = event.target.closest('#my-button');

  if (!button) return;

  let message = prompt('What would you like me to say?');
  alert(message);
}