Skip to content

Instantly share code, notes, and snippets.

@degamer106
Last active February 7, 2018 18:15
Show Gist options
  • Save degamer106/315cc8244280dc2ff4e9082fe9554b71 to your computer and use it in GitHub Desktop.
Save degamer106/315cc8244280dc2ff4e9082fe9554b71 to your computer and use it in GitHub Desktop.
React-Native Redux folder structure
.
├── 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