GitHub - pmndrs/valtio: 💊 Valtio makes proxy-state simple for React and Vanilla
npm i valtio makes proxy-state simple Valtio turns the object you pass it into a self-aware proxy. You can make changes to it in the same way you would to a normal js-object. Create a local snapshot that catches changes. Rule of thumb: read from snapshots, mutate the source.
https://github.com/pmndrs/valtio
The new wave of React state management
As React applications grow in size and complexity, managing shared global state is a challenge. The general advice is to only reach for global state management solutions when you need it. This post will flesh out the core problems global state management libraries need to solve.
https://frontendmastery.com/posts/the-new-wave-of-react-state-management/

Seonglae Cho