Css – React-Select Custom Component Not Working With Input
I'm working on creating a custom component for React-Select that adds a button to the options. const customSingleValue = ({ data }) => ( <div className="custom-single-value"> <span> {data.label} </span> <button>Click me</button> </div> ); <Select className="dropdown" options={fruitOptions} components={{ SingleValue: customSingleValue }}…