Files
PolyMPR/routes/(apps)/notes/index.tsx
T
2025-01-15 10:15:02 +01:00

12 lines
219 B
TypeScript

type ModulesProps = Record<string | number | symbol, never>;
export default function Modules(_props: ModulesProps) {
return (
<>
<h2>All PolyMPR modules</h2>
<nav>
</nav>
</>
);
}