Starting with Meteor 1.3, we install React packages using npm.
meteor npm install react react-dom --save
- Why are we using npm instead of a Meteor package?
- What is the react-dom package?
- "What is the --save option for?"
/imports/startup/client/main.html
<body>
<div id="react-root"></div>
</body>
This will be our "render target" for React components.