mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-25 18:20:09 +02:00
10 lines
188 B
JavaScript
10 lines
188 B
JavaScript
import { useEffect, useRef } from 'react'
|
|
|
|
export default function usePreviousValue(value) {
|
|
const ref = useRef()
|
|
useEffect(() => {
|
|
ref.current = value
|
|
})
|
|
return ref.current
|
|
}
|