1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 11:46:13 +02:00
metamask-extension/ui/app/hooks/usePrevious.js
2020-11-02 17:41:28 -06:00

10 lines
184 B
JavaScript

import { useEffect, useRef } from 'react'
export function usePrevious(value) {
const ref = useRef()
useEffect(() => {
ref.current = value
}, [value])
return ref.current
}