UNPKG

@sanity/assist

Version:

You create the instructions; Sanity AI Assist does the rest.

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