A JavaScript library for building user interfaces 🏆
Declarative
Component-Based
- Hello World
- Introducing JSX
- Rendering Elements
- Components and Props
- State and Lifecycle
- Handling Events
- Conditional Rendering
- Lists and Keys
- Forms
- Lifting State Up
- Composition vs Inheritance
- Thinking In React
Install Node First https://nodejs.org/en/
npm install -g create-react-app npx create-react-app my-app cd my-app npm start
"use strict"; ReactDOM.render( /*#__PURE__*/React.createElement("h1", null, "Welcome to react App"), document.getElementById('root'));