Last active
February 7, 2018 18:15
-
-
Save degamer106/315cc8244280dc2ff4e9082fe9554b71 to your computer and use it in GitHub Desktop.
React-Native Redux folder structure
This file contains 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
. | |
├── index.js | |
├── common | |
│ ├── components | |
│ ├── constants | |
│ ├── http | |
│ ├── i18n | |
│ ├── store | |
│ │ ├── index.js | |
│ │ └── money | |
│ │ ├── index.js | |
│ │ └── paychecks | |
│ │ ├── details | |
│ │ ├── index.js | |
│ │ └── summary | |
├── dashboard | |
├── documents | |
├── login | |
├── money | |
│ ├── index.js | |
│ └── paychecks | |
│ ├── index.js | |
│ ├── PaychecksScreen.js | |
│ ├── common | |
│ ├── compare | |
│ │ ├── breakdown | |
│ │ │ ├── BreakdownModal.js | |
│ │ │ ├── common | |
│ │ │ └── index.js | |
│ │ ├── index.js | |
│ │ └── select | |
│ │ ├── SelectModal.js | |
│ │ ├── index.js | |
│ │ └── styles.js | |
│ ├── details | |
│ │ ├── DetailsScreen.js | |
│ │ ├── common | |
│ │ │ └── components | |
│ │ └── index.js | |
│ └── summary | |
│ ├── Summary.js | |
│ ├── common | |
│ │ ├── components | |
│ │ └── store | |
│ └── index.js | |
└── workchat |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment