@knitui/hooks
usePrevious
The value from the previous render (undefined on the first render) — port of Mantine's usePrevious. Pure React, so identical on web and native.
WebiOSAndroid
Import
import { usePrevious } from "@knitui/hooks";Signature
export function usePrevious<T>(value: T): T | undefined