next.js/test/e2e/switchable-runtime/app/app-valid-runtime/page.js
page.js18 lines285 B
import Time from '../../utils/time'
import Runtime from '../../utils/runtime'

export default function Page() {
  return (
    <div>
      This is a SSR RSC page.
      <br />
      <Runtime />
      <br />
      <Time />
    </div>
  )
}

export const foo = 'bar',
  runtime = 'edge'
Quest for Codev2.0.0
/
SIGN IN