1.0.2 • Published 3 years ago

cust-hooks-use-previous v1.0.2

Weekly downloads
-
License
ISC
Repository
github
Last release
3 years ago

About

cust-hooks-use-previous gives you the previous value of state in functional component / React hook.

Installation

npm i cust-hooks-use-previous

Importing the hook

import { usePrevious } from 'cust-hooks-use-previous';

#Usage

const funFunction =() => { const prevNav = usePrevious(activeNav); const prevSortBy = usePrevious(sortBy); // prevNav will be previous value of activeNav. }