1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-25 04:40:18 +02:00
metamask-extension/ui/app/hooks/usePrevious.js

10 lines
184 B
JavaScript
Raw Normal View History

2020-10-06 20:28:38 +02:00
import { useEffect, useRef } from 'react'
2020-11-03 00:41:28 +01:00
export function usePrevious(value) {
2020-10-06 20:28:38 +02:00
const ref = useRef()
useEffect(() => {
ref.current = value
}, [value])
return ref.current
}