Skip to content

Instantly share code, notes, and snippets.

@MarekZeman91
Created April 18, 2022 00:07
Show Gist options
  • Save MarekZeman91/6b5177845b82424eb94c97e15815fb89 to your computer and use it in GitHub Desktop.
Save MarekZeman91/6b5177845b82424eb94c97e15815fb89 to your computer and use it in GitHub Desktop.
import { useEffect } from 'react';
export const useOnComponentUnmount = (onUnmountFn: () => void) => {
useEffect(() => () => onUnmountFn(), []);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment