I want to prevent calling my useEffect on the first mount.
how can I do this?
I want the best practice.
I don't want to use if condition
import { useState, useEffect } from "react";
const Counter = () => {
  const [count, setCount] = useState(5);
  useEffect(() => {
    console.log(count);
  }, [count]);
  return (
    <div>
      <h1> Counter </h1>
      <div> {count} </div>
      <button onClick={() => setCount(count + 1)}> click to increase </button>
    </div>
  );
};
export default Counter;
