useLocalstorage
Aboutβ
Localstorage hook for React. Syncs with localstorage values across components and browser windows automatically. Sets and retrieves a key from localStorage and subscribes to it for updates across windows.
Installationβ
npm install --save rooks
Importing the hookβ
import { useLocalstorage } from 'rooks';
Usageβ
function Demo() {
const [value, set, remove] = useLocalstorage('my-value', 0);
// Can also be used as {value, set, remove}
return (
<p>
Value is {value}
<button onClick={() => set(value !== null ? value + 1 : 0)}>
Increment
</button>
<button onClick={remove}>Remove </button>
</p>
);
}
render(<Demo />);
Codesandbox Exampleβ
Basic Usageβ
Join Bhargav's discord serverβ
You can click on the floating discord icon at the bottom right of the screen and talk to us in our server.