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