next.js/test/integration/edge-runtime-dynamic-code/pages/index.js
index.js16 lines274 B
import { usingEvalSync, usingEval } from '../lib/utils'

export async function getServerSideProps() {
  return {
    props: await usingEval(),
  }
}

export default function Page(props) {
  return (
    <div>
      {props.value} and {usingEvalSync().value}
    </div>
  )
}
Quest for Codev2.0.0
/
SIGN IN