import { Box, NavLink, Text } from "@mantine/core"; import _ from "lodash"; import { newListAdminPage } from "../new_list_page"; export function Admin_V3_SkeletonNavbar() { const listPage = newListAdminPage.slice(0, -1); return ( <> {listPage.map((parent) => ( {parent.name}} icon={parent.icon} > {!_.isEmpty(parent.child) && parent.child.map((child) => )} ))} ); }