next.js/test/e2e/app-dir/app-external/app/react-server/page.js
page.js14 lines239 B
import Detector from './detector'
import ClientDetector from './client-detector'

export default function Page() {
  return (
    <div>
      Server: <Detector />
      <br />
      Client: <ClientDetector />
      <br />
    </div>
  )
}
Quest for Codev2.0.0
/
SIGN IN