caverav / auditforge

Documentation comments not found for functions and classes JS-D1001
Documentation
Minor
2 occurrences in this check
Documentation comment not found for arrow function toggleSidebar
18  const [isOpen, setIsOpen] = useState(true);
19  const location = useLocation();
20
21  const toggleSidebar = () => setIsOpen(!isOpen);22
23  return (
24    <div
Documentation comment not found for arrow function Sidebar
14  items: SidebarItem[];
15};
16
17export const Sidebar = ({ title, items }: SidebarProps) => {18  const [isOpen, setIsOpen] = useState(true);
19  const location = useLocation();
20