12 lines
211 B
TypeScript
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>
|
|
</>
|
|
);
|
|
}
|