Im getting a warning in my storybook that the react-select component does not confirm to WCAG.
The input inside react-select__input (react-select-4-input) does not have a label.

up
You need to add the <label> element yourself.
<>
<label htmlFor="example">Example label</label>
<Select inputId="example" />
</>
That works perfect @razh . Thanks
Most helpful comment
You need to add the
<label>element yourself.