* Update 404/500 page rendering to no longer use liquid templates * updating tests * remove unused path Co-authored-by: Grace Park <gracepark@github.com>
11 lines
202 B
TypeScript
11 lines
202 B
TypeScript
import { NextPage } from 'next'
|
|
import { GenericError } from 'components/GenericError'
|
|
|
|
type Props = {}
|
|
|
|
const ErrorPage: NextPage<Props> = () => {
|
|
return <GenericError />
|
|
}
|
|
|
|
export default ErrorPage
|