bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/utils/hooks/index.js

14 lines
219 B
JavaScript

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