import PartialLink from "$root/routes/(_components)/PartialLink.tsx"; import { JSX } from "preact/jsx-runtime"; type NavbarProps = { currentApp: string; pages: Record; }; export default function Navbar(props: NavbarProps) { const links: JSX.Element[] = []; for (const page in props.pages) { links.push( , ); } return ( ); }