I\'m using React JS + webpack. General case that I need to resolve is to dynamically load React components that were not bundled with main application. Kind of pluggable com
It sounds like you are asking how to externalize React. If so, you can list libraries as "externals" in your webpack.config.js file:
webpack.config.js
webpackConfig.externals = { "react": "React", "react-dom": "ReactDOM", ... }