next.js/packages/next/src/client/components/builtin/not-found.tsx
not-found.tsx11 lines237 B
import { HTTPAccessErrorFallback } from '../http-access-fallback/error-fallback'

export default function NotFound() {
  return (
    <HTTPAccessErrorFallback
      status={404}
      message="This page could not be found."
    />
  )
}
Quest for Codev2.0.0
/
SIGN IN