I’m trying to build a simple React application and am wondering why I need the browser.min.js file.
I have included both react and react-dom.js, but nothing is displ
You've written the code in Babel (ES7) and not in a version of JavaScript that the browser can handle natively, and you are delivering the ES7 to the browser instead of transpiling it at build time.