Tell us what’s happening:
I can’t figure out where it’s wrong.
The test simply fails.
Your code so far
<!-- file: index.html -->
/* file: styles.css */
/* file: index.tsx */
{/* User Editable Region */}
<select
id="position"
className="input"
value={player.position}
onChange={(e) =>
setPlayer({...player, position: e.target.value as Position})
}
>
</select>
{/* User Editable Region */}
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:151.0) Gecko/20100101 Firefox/151.0
Challenge Information:
Build a Football Player Card Builder - Step 53