next.js/test/e2e/app-dir/segment-cache/basic/app/partially-static/page.tsx
page.tsx20 lines473 B
import { LinkAccordion } from '../../components/link-accordion'

export default function FullyStaticStart() {
  return (
    <>
      <p>
        Demonstrates that when navigating to a partially static route, the
        server does not render static layouts that were already prefetched.
      </p>
      <ul>
        <li>
          <LinkAccordion href="/partially-static/target-page">
            Target
          </LinkAccordion>
        </li>
      </ul>
    </>
  )
}
Quest for Codev2.0.0
/
SIGN IN