본문으로 건너뛰기

useUnMount

컴포넌트가 언마운트될 때 콜백 함수를 호출하는 커스텀 훅입니다.


Interface

const useUnmount: (callback: () => any) => void

Usage

import { useUnmount } from '@devgrace/react';

const Example = () => {
useUnmount(() => console.log("unmount"));

return <>{/* ... */}</>;
};