Created
September 29, 2015 17:09
-
-
Save paulruescher/4ff11af09efe2165151d to your computer and use it in GitHub Desktop.
React Project Structure
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| app | |
| ├── config | |
| │ └── routes.js | |
| ├── screens | |
| │ └── App | |
| │ ├── components | |
| │ ├── screens | |
| │ │ ├── Admin | |
| │ │ │ ├── components | |
| │ │ │ ├── screens | |
| │ │ │ │ ├── Reports | |
| │ │ │ │ │ ├── components | |
| │ │ │ │ │ ├── stores | |
| │ │ │ │ │ │ └── ReportsStore.js | |
| │ │ │ │ │ └── index.js | |
| │ │ │ │ └── Users | |
| │ │ │ │ ├── components | |
| │ │ │ │ └── index.js | |
| │ │ │ ├── shared | |
| │ │ │ │ └── stores | |
| │ │ │ │ ├── AccountStore.js | |
| │ │ │ │ └── UserStore.js | |
| │ │ │ └── index.js | |
| │ │ └── Course | |
| │ │ ├── components | |
| │ │ ├── screens | |
| │ │ │ └── Assignments | |
| │ │ │ ├── components | |
| │ │ │ └── index.js | |
| │ │ └── index.js | |
| │ ├── shared | |
| │ │ └── components | |
| │ │ ├── Avatar.js | |
| │ │ └── Icon.js | |
| │ └── index.js | |
| ├── shared | |
| │ └── util | |
| │ └── createStore.js | |
| └── index.js |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment