Temporary student manager

This commit is contained in:
Clayzxr
2025-01-17 10:40:49 +01:00
parent 3987d76d59
commit 416aad06ea
6 changed files with 235 additions and 21 deletions
@@ -1,17 +0,0 @@
import { Partial } from "$fresh/runtime.ts";
import { RouteConfig } from "$fresh/server.ts";
type ModulesProps = Record<string | number | symbol, never>;
export const config: RouteConfig = {
skipAppWrapper: true,
skipInheritedLayouts: true,
};
export default function Modules(_props: ModulesProps) {
return (
<Partial name="body">
<a href="mobility" f-partial={"notes/partials"}>mobility</a>
</Partial>
);
}