Day 1 : React Basics
Methods of Creating and Running a Project
With Framework( Next.js)
npx create-react-app Project_Name
npm run start
Without Framework( through Bundler Like Vite etc)
npm create vite@latest
npm install
npm run dev
What's inside the App.js a...
chiragwrites.hashnode.dev2 min read