An open API service indexing awesome lists of open source software.

https://github.com/ebazhanov/react-folder-structure

A simple example of how you can organize your React App folder structure
https://github.com/ebazhanov/react-folder-structure

example-project folders javascript react structure

Last synced: about 2 months ago
JSON representation

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

Awesome Lists containing this project

README

        

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](https://github.com/airbnb/javascript/tree/master/react)
```
├── 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
```