EffectsuseOnceOn this pageuseOnceRun effect synchronously only once.APIfunction useOnce(effect: () => void): void;Exampleimport React from "react";import { useOnce } from "@lilib/hooks";function Example() { useOnce(() => { console.log("Run effect"); }); ...}