Files
PolyMPR/routes/_403.tsx
T

13 lines
196 B
TypeScript

import { Head } from "$fresh/runtime.ts";
export default function Error403() {
return (
<>
<Head>
<title>403 - Forbidden</title>
</Head>
<p>403</p>
</>
);
}