React Tutorial Content
- Prerequisites
- var, let and const
- arrow function
- template literals
- array – map filter
- for of loop
- default parameters (optional)
- object literals (optional)
- rest spread operations (optional)
- destructuring assignment
- fetch api and axios
- Installation and Hello World using vite
- Render Function and React Fragment
- JSX (JavaScript XML)
- Components – Functional Component
- State and Props
- Events (onClick)
- Hooks – State and Effect
- Handling Forms using useState and event.target.value
- React router dom – <Link to=”/path” />
Advanced (Optional for fasttrack/online batch)
- Redux
- Redux Saga
Create React App using vite
npm create vite@latest my-react-app


cd my-react-app
npm install
npm run dev