next.js/test/e2e/app-dir/parallel-routes-and-interception/app/intercepting-routes-dynamic-catchall/photos/page.tsx
page.tsx16 lines346 B
import Link from 'next/link'

export default function Home() {
  return (
    <>
      <Link href="/intercepting-routes-dynamic-catchall/photos/catchall/123">
        Visit Catch-all
      </Link>

      <Link href="/intercepting-routes-dynamic-catchall/photos/optional-catchall/123">
        Visit Optional Catch-all
      </Link>
    </>
  )
}
Quest for Codev2.0.0
/
SIGN IN