In am using React and trying to trigger a function only once, when the page initially loads. Currently, the below code triggers the console message twice at page load.
import { useState, useEffect, useRef } from "react";
export default function TestRef(){
    const [inputValue, setInputValue] = useState("");
    const count = useRef(null);
    const myFunc = () => {
        console.log('Function Triggered');
    }
    useEffect(() => {
        if(!count.current){
            count.current = 1;
            myFunc();
        }
        return () => { count.current = null; }
      }, []);
    return (
    <>
      <p>Page content</p>
    </>
  );
}
I have read up on how React 18 intentionally double-renders elements, which is my reason for using useRef and for returning the cleanup function in the useEffect hook, but it still doesn't seem to work.
 
    