Files
PolyMPR/routes/(apps)/mobility/index.tsx
T
Kevin FEDYNA b894930e12 Fix after MR
2025-01-15 15:57:08 +01:00

12 lines
211 B
TypeScript

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