react-code-dataset
/
next.js
/packages
/next
/src
/client
/components
/builtin
/global-not-found.tsx
| import { HTTPAccessErrorFallback } from '../http-access-fallback/error-fallback' | |
| function GlobalNotFound() { | |
| return ( | |
| <html> | |
| <body> | |
| <HTTPAccessErrorFallback | |
| status={404} | |
| message={'This page could not be found.'} | |
| /> | |
| </body> | |
| </html> | |
| ) | |
| } | |
| export default GlobalNotFound | |