JSFiddle - React, Tailwind, and code Playground

HTML

<article>
  <header>This is my form</header>
  <section>
    <p>Something explaining what is happening on this form.</p>
    <form id="myform" action="/submit" name="myform">
      <input type="text" name="thing">
    </form>
  </section>
  <footer>
     <button type="submit" form="myform" onclick="javascript:getElementById(this.getAttribute('form')).submit();
">Submit</button>
  </footer>
</article>