swr-sync-state
v1.0.4
Published
SWR extension to enabled state management using SWR
Downloads
18
Readme
swr-sync-state
a small library to wrap SWR, enabling SWR to function as global state manager
to start
npm i swr-sync-state
usage
// inside react component
export const SomeComponent = () => {
const key = 'someKey';
const state = useSyncSWR(key) ?? 0;
const incrementHandler = () => {
setSyncSWR(key, (p) => p + 1);
};
return (
<div>
<div>Counter : {state}</div>
<button onClick={incrementHandler}>Increment</button>
</div>
);
};