Which file is the conventional entry point for a React application created with Create React App?

React Developer Easy

React Developer — Easy

Which file is the conventional entry point for a React application created with Create React App?

Key points

  • src/index.js is the main file where the ReactDOM.render method is usually called.
  • public/index.html is the HTML file where the root React component is mounted.
  • src/App.js is a common location for defining the root component, but it is not the entry point.
  • src/main.jsx is not a standard entry point for Create React App projects.

Ready to go further?

Related questions