Error Loading Page
{statusCode &&Error code: {statusCode}
}
import { PageHead } from './PageHead'
import styles from './styles.module.css'
export function ErrorPage({ statusCode }: { statusCode: number }) {
const title = 'Error'
return (
<>
Error code: {statusCode}
}