useCreate.js 255 B

12345678910
  1. import { useEffect, useRef } from "react";
  2. export function useMounted(cb) {
  3. const initialized = useRef(false);
  4. useEffect(() => {
  5. if (!initialized.current) {
  6. initialized.current = true;
  7. cb();
  8. }
  9. }, []);
  10. }