next.js/test/e2e/app-dir/interception-routes-root-catchall/app/page.tsx
page.tsx11 lines225 B
import Link from 'next/link'

export default async function Home() {
  return (
    <div>
      <Link href="/items/1">Open Items #1 (Intercepted)</Link>
      <Link href="/foobar">Go to Catch-All Page</Link>
    </div>
  )
}
Quest for Codev2.0.0
/
SIGN IN