You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For better architecture, move redux related files and services to component specific folders. Such as actions, reducers etc. Current structure that looks is like below.
For better architecture, move redux related files and services to component specific folders. Such as actions, reducers etc. Current structure that looks is like below.
src/
|
-->actions/
|
-->components/
|
-->container/
|
-->reducers/
|
-->sagas/
|
-->services/
|
-->store/
New structure should look like below:
src/
|
----> components/
|
------> employees/
|
--------> employeesComponent.js
|
--------> adminActions.js
|
--------> adminReducers.js
|
--------> adminServices.js
The text was updated successfully, but these errors were encountered: