0.3.4 • Published 2 years ago
@har4s/use-local-storage v0.3.4
Use Local Storage
A React Hook for using Browser Local/Session Storage
Installation
npm install @har4s/use-local-storage
or
yarn add @har4s/use-local-storage
Usage
import { useLocalStorage } from '@har4s/use-local-storage';
// or import { useSessionStorage } from '@har4s/use-local-storage';
export const Example = () => {
// ...
const [something, setSomething] = useLocalStorage('key', 'fallback');
// or const [something, setSomething] = useSessionStorage('key', {...});
// or const [something, setSomething] = useLocalStorage('key', 'fallback',{ persistent:false });
// ...
};