Files
PolyMPR/routes/(_islands)/Navbar.tsx
T
2025-01-15 11:20:48 +01:00

12 lines
187 B
TypeScript

type NavbarProps = {
pages: Record<string, string>;
};
export default function Navbar(props: NavbarProps) {
return (
<>
<p>{JSON.stringify(props.pages)}</p>
</>
);
}