You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
a concatenated file containing all of your React components, and each one has to be available in the global scope (either window or global can be used)
So far all the examples I've seen just expose their React components to the window e.g var Component = React.createClass({})
How can I use components that are written as CommonJS for the client side? Ideally I'd like to avoid dozens of global variables in the browser.