UNPKG

@knine-sdk/react

Version:

React helpers for Knine Finance projects. Part of Knine JS SDK

3 lines (2 loc) 184 B
import { Dispatch, SetStateAction } from 'react'; export declare const useLocalStorage: <T>(key: string, initialValue: T) => [storedValue: T, setValue: Dispatch<SetStateAction<T>>];