React is a Javascript Library for building user interface. It is open source. Its main focus is on building user interface. React has a component base

React Series For Beginners

submited by
Style Pass
2020-06-30 18:45:56

React is a Javascript Library for building user interface. It is open source. Its main focus is on building user interface. React has a component based architecture what it means is suppose you do have a website, then it has header, sideNavBar, maincontainer, Footer. so all of them are components which when composed in right way will build up the website.

Now create a folder(REACT TUTORIAL) and open VS in that. Now we will create a new react app. Go to terminal in VS code and run command “npx create-react-app reactfirstproject” after successful creation of react app we will navigate to that folder by writing command cd reactfirstproject  then run command  npm start after that application will run on browser on port 3000

Leave a Comment