DEV Community

PONVEL M
PONVEL M

Posted on

Fundamentals of react app

Today we going to see the reasons and Uses of things that are all visible while creating the react app

The Topics we going to see is:

  • What is Node_modules?
  • What is src?
  • What is App.css?
  • What is App.jsx?
  • What is index.css?
  • What is main.jsx?
  • What is index.html?
  • What is package.json?

What is Node_modules?
this the essential needs of react app, where we have use this modules any where at out react projects, while creating the react app this is one of the steps to install the modules, this is essential step, By using this comment we install this commend "npm install"

What is src?
src is the folder where the all the react app creating folders have been stored like html,css,main.jsx folders which are using to make visible to the monitor.

What is App.css?
this the one of the folder where it is used to do the style for the html folder

Top comments (0)