next.js/test/e2e/app-dir/global-not-found/cache-components/app/global-not-found.tsx
global-not-found.tsx21 lines381 B
import type { Metadata } from 'next'
import { Suspense } from 'react'
import { Year } from './year'

export const metadata: Metadata = {
  title: 'Global Not Found',
}

export default function GlobalNotFound() {
  return (
    <html lang="en">
      <body>
        <h1>Global Not Found</h1>
        <Suspense>
          <Year />
        </Suspense>
      </body>
    </html>
  )
}
Quest for Codev2.0.0
/
SIGN IN