Hi, I have initialValue set and it's not using it.
<Select
initialValue={maxPlayers}
options={[1, 2, 3, 4, 5, 6, 7, 8]}
onOptionChange={setMaxPlayers}
getOptionValue={opt => opt}
getOptionLabel={opt => opt}
/>
I even hard-coded it to initialValue={2} without success. Am I doing something wrong?
Hi, I have initialValue set and it's not using it.
I even hard-coded it to
initialValue={2}without success. Am I doing something wrong?