The recommended way to get started with React is to use Create React App, which is a quick and easy way to get a build pipeline in place to support ES6 and JSX compilation. Framework7 React already has a template built with Create React App for you to use, and this is recommended for most users.
If your needs exceed what Create React App provides, or you prefer to create your own custom build pipeline leveraging Babel, Webpack, Rollup, etc., here are the steps to get started:
npm install react --save
npm install framework7-react --save
Although not recommended for production apps, if you need to use Framework7 React without a build pipeline (just static JavaScript), this is possible as well. Framework7 React already has a pre-built static template. This can be especially useful when creating quick examples on JSFiddle, CodePen, etc. Here are the steps:
Add a script tag in your HTML for either the Framework7 React minified build or the unminified build from GitHub
Add script tags in your HTML for React and React DOM
Add a script tag in your HTML for the browser version of the Babel compiler so you can use ES6 and JSX without having a build pipeline