As a beginner the solution isn't obvious.
<input
type="text"
/>
Produces an error:
Error: 34: type is a reserved keyword, it cannot be used as an identifier. Try `type_' instead
When I attempt to correct it with type_:
<input
type_="text"
/>
Produces another error.
The correct way to write it is:
<input
_type="text"
/>
The error suggested the wrong fix.
FWIW it should be:
<input
type_="text"
/>
Most helpful comment
FWIW it should be: