ente/src/pages/404.js

7 lines
170 B
JavaScript
Raw Normal View History

2021-03-08 11:59:14 +00:00
import Error from 'next/error'
export default function NotFound() {
// Opinionated: do not record an exception in Sentry for 404
return <Error statusCode={404} />
}