@devgrace/reacthooksuseUnMount이 페이지에서useUnMount 컴포넌트가 언마운트될 때 콜백 함수를 호출하는 커스텀 훅입니다. Interface const useUnmount: (callback: () => any) => void Usage import { useUnmount } from '@devgrace/react';const Example = () => { useUnmount(() => console.log("unmount")); return <>{/* ... */}</>;};