Project Falcon
An introduction to React
React was first open-sourced by Facebook in 2013.
React went against the traditional MVC model that Angular, Ember, and Backbone were using.
Both Angular and Ember have since nudged closer toward React's architecture.
It sounds fancy, but it's actually a very simple concept.
render itself.We'll talk more about components, how we create them and how they interact with each other to create your application as we go.
The 2018 StackOverflow Developer Survey found react to be one of the most loved technologies in use today.
We're going to use a tool called create-react-app to bootstrap (not the CSS framework...) our React application so we don't have to worry about all of the configuration stuff
npx create-react-app <your-project\name>cd <your-project\name>npm start or yarn startYou're now ready to start programming React! Follow along with the rest of the slides to get a good idea of what React does for you.