In my previous Meteor app, using browserify, and React, all was working until I switched to meteor webpack.
I use react-select in my Meteor apps and it worked great
If You use web pack then you can fix it by adding the following to Webpack config for Don't bundle react or react-dom
externals: { 'react': 'React', 'react-dom': 'ReactDOM' }