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

10 lines
185 B
JavaScript
Raw Normal View History

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