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
{{ message }}
This repository has been archived by the owner on Jun 16, 2020. It is now read-only.
Because all your state is in a top level state atom for your entire application you can ensure this state atom is in a normalized format.
This means there is only one mutable source of truth for any entity which removes an entire realm of problems like cache invalidation, shared state, replication, etc
We should document the core philosophy of mercury.
Idempotence
The following hold.
render(A); render(A); === render(A);
render(A); render(B); === render(B);
The text was updated successfully, but these errors were encountered: