reacthooksuseUnMountOn this pageuseUnMount 컴포넌트가 언마운트될 때 콜백 함수를 호출하는 커스텀 훅입니다. Code 🔗 실제 구현 코드 확인 Interface typescriptfunction useUnmount(callback: () => void): void Usage typescriptimport { useUnmount } from '@modern-kit/react';const Example = () => { useUnmount(() => console.log("unmount")); return <>{/* ... */}</>;};