UNPKG

@piplup/use-local-storage

Version:

React hook for reading values from the browser localStorage and listening to changes in it.

5 lines (4 loc) 282 B
export declare function getItem(key: string): null | string; export declare function setItem(key: string, value: string): void; export declare function removeItem(key: string): void; export declare function useLocalStorage(key: string, initialValue?: null | string): null | string;