mirror of
https://github.com/streamich/react-use.git
synced 2025-12-08 18:02:14 +00:00
652 B
652 B
usePrevious
React state hook that returns the previous state as described in the React hooks FAQ.
Usage
import {usePrevious} from 'react-use';
const Demo = () => {
const [count, setCount] = React.useState(0);
const prevCount = usePrevious(count);
return (
<p>
<button onClick={() => setCount(count + 1)}>+</button>
<button onClick={() => setCount(count - 1)}>-</button>
<p>
Now: {count}, before: {prevCount}
</p>
</p>
);
};
Reference
const prevState = usePrevious = <T>(state: T): T;