What\'s the best way to style a react-select component\'s (https://github.com/JedWatson/react-select) options?
react-select
I can target the select itself just fine,
I got use style:
const options = [ {label: "one", value: 1, style: { color: 'red' }}, {label: "two", value: 2, style: { color: 'blue' }} // more options... ]; ...