next.js/test/e2e/legacy-link-behavior/app/validations/rsc-that-renders-client/client-with-rsc-child/page.tsx
page.tsx19 lines304 B
import { ClientLink } from '../client-link'
import ClientA from './_client'

export default function Page() {
  return (
    <>
      <ClientLink href="/about">
        <ClientA>
          <RSC />
        </ClientA>
      </ClientLink>
    </>
  )
}

async function RSC() {
  return <span>About</span>
}
Quest for Codev2.0.0
/
SIGN IN