next.js/test/e2e/async-modules/pages/gssp.jsx
gssp.jsx16 lines266 B
const gsspValue = await Promise.resolve(42)

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

export default function Index({ gsspValue }) {
  return (
    <main>
      <div id="gssp-value">{gsspValue}</div>
    </main>
  )
}
Quest for Codev2.0.0
/
SIGN IN