usePrevious

usePrevious is a custom hook for obtaining the previous value.

state: false, prev: undefined

Usage

import { usePrevious } from "@yamada-ui/react"
const [flg, { toggle }] = useBoolean()
const prevFlg = usePrevious(flg)