Structure of React projects
- As the application gets bigger, we may have to move files related to each Component into a separate folder
- This makes much more sense when we use React Router
- The
index.js
orindex.jsx
in each folder acts as the entry point to that folder (similar to Node.js)- The index file need to look like this.
export { default } from './Navbar';
- The index file need to look like this.