UNPKG

useful-custom-react-hooks

Version:

A collection of useful custom React hooks to simplify common tasks and enhance your React applications.

2 lines (1 loc) 115 B
export declare const useStorage: <T>(key: string, initialState?: T | undefined) => [T, (value: T | null) => void];