Files
PolyMPR/routes/index.tsx
Kevin FEDYNA 596ee0536a formatted code
2025-01-21 23:53:43 +01:00

14 lines
285 B
TypeScript

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