next.js/test/e2e/async-modules/pages/gsp.jsx
gsp.jsx16 lines257 B
const gspValue = await Promise.resolve(42)

export async function getStaticProps() {
  return {
    props: { gspValue },
  }
}

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