JSFiddle - React, Tailwind, and code Playground

HTML

<form action="http://google.com" method="post">
  <p>
    <label for="nombre">Nombre:</label>
    <input type="text" id="nombre">
  </p>
  <p>
    <label for="apellido">Apellido: </label>
    <input type="text" id="apellido">
  </p>
  <p>
    <input type="radio" name="genero" value="Hombre"> Hombre<br />
    <input type="radio" name="genero" value="Mujer"> Mujer
  </p>
  <p>
    <input type="submit" value="Enviar">
  </p>
</form>