UNPKG

@botonic/react

Version:

Build Chatbots using React

10 lines (8 loc) 185 B
import { useEffect, useRef } from 'react' export function usePrevious(value: any): any { const ref = useRef() useEffect(() => { ref.current = value }) return ref.current }