How to setup react ?
To create react app.
npx create-react-app my-app
cd my-app
npm start
To create a project called my-app, we need to run this command
npx create-react-app my-app
and then change the directory to the my-app folder and run this command
cd my-app
t...
santoshthapa.hashnode.dev2 min read