Erro: a entrada é uma tag de elemento vazio e não deve ter `filhos` nem usar perigosos etainnerhtml.

Self closing 
Wrong:
<input></input
Correct:
<input/>

If you are using bootstrap:
Wrong:
<Form.Control></Form.Control>
Correct:
<Form.Control/>
Lazy Lapwing