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

11 lines
232 B
TypeScript

import { FreshContext } from "$fresh/server.ts";
// deno-lint-ignore require-await
export default async function Home(_request: Request, _context: FreshContext) {
return (
<>
<h2>Welcome to PolyMPR!</h2>
</>
);
}