react redux folder structure best practices

Solutions on MaxInterview for react redux folder structure best practices by the best coders in the world

showing results for - "react redux folder structure best practices"
Ashley
08 Jun 2019
1└── src
2    ├── actions
3    │   ├── articleActions.js
4    │   ├── categoryActions.js
5    │   └── userActions.js
6    ├── api
7    │   ├── apiHandler.js
8    │   ├── articleApi.js
9    │   ├── categoryApi.js
10    │   └── userApi.js
11    ├── components
12    │   └── ArticleComponent.jsx
13    ├── containers
14    │   └── ArticleContainer.js
15    ├── index.js
16    ├── pages
17    │   ├── CategoryPage
18    │   │   ├── CategoryPageContainer.js
19    │   │   └── components
20    │   │       └── CategoryPageComponent.jsx
21    │   └── HomePage
22    │       ├── components
23    │       │   ├── ArticleListComponent.jsx
24    │       │   ├── CategoryComponent.jsx
25    │       │   └── HomePageComponent.jsx
26    │       └── HomePageContainer.js
27    ├── reducers
28    │   ├── articleReducer.js
29    │   ├── categoryReducer.js
30    │   └── userReducer.js
31    ├── routes.js
32    ├── store.js
33    └── utils
34        └── authUtils.js