I am using React Select
I want its Dropdown position to be dynamic. let's say if there is no space below it, then the dropdown should be opened to above select box.
<Select
value={selectedOption}
onChange={this.handleChange}
options={options}
/>
Is there any option to make dropdown position dynamic?
Any help would be great.
Thank You.