Files
PolyMPR/routes/(apps)/notes/index.tsx
T
2025-01-15 11:20:48 +01:00

9 lines
220 B
TypeScript

type ModulesProps = Record<string | number | symbol, never>;
export default function Modules(_props: ModulesProps) {
return (
<>
<a href="notes/test" f-partial={"notes/partial/test"}>click</a>
</>
);
}