General form element select not viewing label with code below
<Select
label="Select"
options={[
{ label: 'option 1', value: '1' },
{ label: 'option 2', value: '2' },
{ label: 'option 3', value: '3' },
{ label: 'option 4', value: '4' },
{ label: 'option 5', value: '5' },
]}
value={1}
/>
replace the label with text in the object
it will view the option text
General form element select not viewing label with code below
<Select
label="Select"
options={[
{ label: 'option 1', value: '1' },
{ label: 'option 2', value: '2' },
{ label: 'option 3', value: '3' },
{ label: 'option 4', value: '4' },
{ label: 'option 5', value: '5' },
]}
value={1}
/>
replace the label with text in the object
it will view the option text