Version: v4.3.0use-previous-differentAbout#usePreviousDifferent returns the last different value of a variableInstallation#npm install --save @rooks/use-previous-differentCopyImporting the hook#import usePreviousDifferent from "@rooks/use-previous-different"CopyUsage#function Demo() { const [value, setValue] = useState(0) const previousValue = usePreviousDifferent(value) return null} render(<Demo/>)CopyCodesandbox Examples#Basic Usage#Join Bhargav's discord server#You can click on the floating discord icon at the bottom right of the screen and talk to us in our server.