React Basic Learning
React is js libary for building dynamic and interactive user interface. It was created by facebook in 2011 and widely used frontend development. Who to install react we need node version 16 or higer download latest version of node. How to create a React App 2 way to create react app official way provided by react team → create react app → vite → another tool, it is very popular because it is faster and give small bundle size. Process npm create vite@latest - to install latest version of vite there will be guide how to setup vite after npm install cd project name and do npm run dev Project Structure we can see node_modules where all node package are kept when we install other third package these are all stored here. It is good practice to put these modules in .gitignore file because it might be very heavy file. public file where all images that we use can be stored here. .gitignore to ignore file and folder that we don’t want to store in git index. htm...