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
Is your feature request related to a problem? Please describe.
Currently we are using a kind of structure inspired by redux. We have actions which contain the logic and AppJS which sets the states based of the actions responses.
Every time a state gets set in AppJS the whole application reloads. That is not indented and not recommend.
A further problem is that it is very messy to hand over all props correctly.
Describe the solution you'd like
By replacing our structure with redux we eliminate the issue with application reloads and passing over most data as props is not longer required.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Currently we are using a kind of structure inspired by redux. We have actions which contain the logic and AppJS which sets the states based of the actions responses.
Every time a state gets set in AppJS the whole application reloads. That is not indented and not recommend.
A further problem is that it is very messy to hand over all props correctly.
Describe the solution you'd like
By replacing our structure with redux we eliminate the issue with application reloads and passing over most data as props is not longer required.
The text was updated successfully, but these errors were encountered: