next.js/test/e2e/app-dir/segment-cache/basic/app/with-server-action/page.tsx
page.tsx20 lines482 B
import { LinkAccordion } from '../../components/link-accordion'

export default function FullyStaticStart() {
  return (
    <>
      <p>
        This is a regression test case to ensure that prerendered segments that
        include server actions do not throw an error when navigating to them.
      </p>
      <ul>
        <li>
          <LinkAccordion href="/with-server-action/target-page">
            Target
          </LinkAccordion>
        </li>
      </ul>
    </>
  )
}
Quest for Codev2.0.0
/
SIGN IN