next.js/test/integration/no-page-props/pages/gssp.js
gssp.js12 lines182 B
export default function Gssp() {
  return <p id="gssp">getServerSideProps</p>
}

export const getServerSideProps = () => {
  return {
    props: {
      hello: 'world',
    },
  }
}
Quest for Codev2.0.0
/
SIGN IN