April 2018
Intermediate to advanced
284 pages
6h 43m
English
First, we have to go to https://reactjs.org/ and see the latest available version that we will use in our application:

As of writing this book, the latest version available is v16.0.0. We will use CDN React packages in this chapter to build our application:
<script crossorigin src="https://unpkg.com/react@16/umd/react.development.js"></script><script crossorigin src="https://unpkg.com/react-dom@16/umd/react-dom.development.js"></script>
The preceding versions are only meant for development, and that is not suitable for production. To use minified and optimized production versions, we need to use these production packages: ...