link-stack/apps/link/pages/500.tsx

14 lines
245 B
TypeScript
Raw Normal View History

2023-05-24 20:27:57 +00:00
import { FC } from "react";
import Head from "next/head";
import { Layout } from "components/Layout";
const FiveHundred: FC = () => (
<Layout>
<Head>
<title>Link Shell</title>
</Head>
</Layout>
);
export default FiveHundred;