mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 13:50:31 +00:00
BIG-126: async localization loaded data failed to be injected to application.
This commit is contained in:
15
src/hooks/utils/usePrevious.js
Normal file
15
src/hooks/utils/usePrevious.js
Normal file
@@ -0,0 +1,15 @@
|
||||
import { useRef, useEffect } from 'react';
|
||||
|
||||
|
||||
// Hook
|
||||
export function usePrevious(value) {
|
||||
// The ref object is a generic container whose current property is mutable ...
|
||||
// ... and can hold any value, similar to an instance property on a class
|
||||
const ref = useRef();
|
||||
// Store current value in ref
|
||||
useEffect(() => {
|
||||
ref.current = value;
|
||||
}, [value]); // Only re-run if value changes
|
||||
// Return previous value (happens before update in useEffect above)
|
||||
return ref.current;
|
||||
}
|
||||
Reference in New Issue
Block a user