import * as React from "react"; import cx from "classnames"; import { useAppContext } from "../contexts/AppContext"; type MenuItem = { label: string; }; const MenuItems: MenuItem[] = [ { label: "InĂcio", }, { label: "Stake", }, { label: "Carteira", }, ]; export const SideNav = () => { const { sideNavExpanded, setSideNavExpanded } = useAppContext() const handleCloseSideNav = () => { setSideNavExpanded(false); }; return (