You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
session-desktop/ts/hooks/useFocus.ts

11 lines
248 B
TypeScript

4 years ago
import { useEffect } from 'react';
4 years ago
export const useFocus = (action: (param: any) => void) => {
useEffect(() => {
4 years ago
window.addEventListener('focus', action);
4 years ago
return () => {
4 years ago
window.removeEventListener('focus', action);
4 years ago
};
});
4 years ago
};