Counselllor / Counsellor-Web

Documentation comments not found for functions and classes JS-D1001
Documentation
Minor
2 occurrences in this check
Documentation comment not found for arrow function Navbar
 2import './Navbar.css'
 3import Logo from '../../assets/logo.webp'
 4
 5const Navbar = () => { 6  return (
 7    <>
 8      <nav id="navbar">
Documentation comment not found for function declaration setFixed
 87  };
 88
 89  const [fix, setFix] = useState(false);
 90  function setFixed() { 91    if (window.scrollY > 0) {
 92      setFix(true);
 93    } else {