React

React Tutorial Content

  1. 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
  2. Installation and Hello World using vite
  3. Render Function and React Fragment 
  4. JSX (JavaScript XML)
  5. Components – Functional Component
  6. State and Props
  7. Events (onClick)
  8. Hooks – State and Effect
  9. Handling Forms using useState and event.target.value
  10. React router dom – <Link to=”/path” />

Advanced (Optional for fasttrack/online batch)

  1. Redux
  2. Redux Saga

Create React App using vite

npm create vite@latest my-react-app
  cd my-react-app
  npm install
  npm run dev