1
0
mirror of synced 2025-12-20 18:36:31 -05:00
Files
docs/pages/_error.tsx
Mike Surowiec df38087aed Update 404/500 pages to no longer use liquid templates (#20450)
* Update 404/500 page rendering to no longer use liquid templates

* updating tests

* remove unused path

Co-authored-by: Grace Park <gracepark@github.com>
2021-07-21 12:22:30 -07:00

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