1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00
metamask-extension/ui/app/hooks/usePrevious.js
2020-10-06 15:58:38 -02:30

10 lines
185 B
JavaScript

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