UNPKG

beautiful-react-hooks

Version:

A collection of beautiful (and hopefully useful) React hooks to speed-up your components and hooks development

6 lines (5 loc) 186 B
/** * On each render returns the previous value of the given variable/constant. */ declare const usePreviousValue: <TValue>(value?: TValue) => TValue; export default usePreviousValue;