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
Currently, the action and reducer code, is duplicated in both /packages/app/client and /packages/app/main.
The number of files here could be halved by moving all this shared code into /packages/app/shared/state where both the main and client code bases could import it from.
The only thing left on either side would be the store initialization code and that side's sagas.
The text was updated successfully, but these errors were encountered:
Currently, the action and reducer code, is duplicated in both
/packages/app/client
and/packages/app/main
.The number of files here could be halved by moving all this shared code into
/packages/app/shared/state
where both the main and client code bases could import it from.The only thing left on either side would be the store initialization code and that side's sagas.
The text was updated successfully, but these errors were encountered: