EffectsuseUnmountOn this pageuseUnmountRun effect on the component unmount.APIfunction useUnmount(effect: () => void): void;Exampleimport React from "react";import { useUnmount } from "@lilib/hooks";function Example() { useUnmount(() => { console.log("Component will unmount"); }); ...}