How can I make react-select to respect flex layout? Nothing of the below worked.
const Container = styled(\'div\')` width: 100%; height: 100%; display:
To make your react-select component flex you need to apply flex:1 props on the container like this:
react-select
flex:1
const styles = { container: base => ({ ...base, flex: 1 }) }; <Select styles={styles} />