/react-folder-structure

A simple example of how you can organize your React App folder structure

Primary LanguageJavaScript

Project structure for your React App

the idea of this repo is to show how you can structure files by using folders in additional you can take a look at style guide standards

├── node_modules (.gitignore)
├── public
│   ├── favicon.ico
│   ├── index.html
│   └── manifest.json
├── src
│   ├── assets
│   │   │   ├── images
│   │   │   └── logo.svg
│   ├── constants
│   │   └── data.js
│   ├── components
│   │   ├── app
│   │   │   ├── App.css
│   │   │   ├── App.jsx
│   │   │   └── App.test.js
│   │   └── index.js
│   ├── utils
│   │   ├── ...
│   │   └── index.js
│   ├── index.css
│   ├── index.js
│   ├── serviceWorker.js
│   └── setupTests.js
├── .gitignore
├── package.json
└── README.md
└── yarn.lock