What is the recommended way to bring in the CSS from this packaged in webpack?
Just doing require('react-select') appears to only bring in the javascript. I was able to get it working by adding require('react-select/less/default.less') or require('react-select/dist/default.css') to my javascript file.
I'm new to node packages so I'm not clear if that is by design or not.