UNPKG

@botonic/react

Version:

Build Chatbots using React

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