I have a basic form input for a number. The form works. The field will not accept letters being type into it. But the increment arrows that usually show up for type="number"
aren't showing up. What am I missing?
<div>
<input
type="number"
id="cost"
className="form-field"
placeholder="Cost"
min="0"
onChange={handleChange}
value={hats.cost}/>
</div>