import AppBar from "../../components/AppBar"; import Layout from "../../components/Layout"; import Link from "../../components/Link"; import { useAuth } from "../../helpers/auth"; import { ChevronRightIcon, Cog6ToothIcon, UserIcon } from "@heroicons/react/24/outline"; const menus = [ { name: 'Riwayat Pesanan', url: '/my/profile' }, { name: 'Faktur Penjualan', url: '/my/profile' }, { name: 'Faktur Pajak', url: '/my/profile' }, { name: 'Surat Jalan', url: '/my/profile' } ]; export default function MyMenu() { const [auth, setAuth] = useAuth(); return ( <>

{ auth.name }

Akun Bisnis
{ menus.map((menu, index) => ( { menu.name } )) }
); }