next.js/test/e2e/deferred-entries/pages/static-props.tsx
static-props.tsx16 lines278 B
type StaticPropsPageProps = {
  message: string
}

export function getStaticProps() {
  return {
    props: {
      message: 'Pages getStaticProps Primary',
    },
  }
}

export default function StaticPropsPage({ message }: StaticPropsPageProps) {
  return <h1>{message}</h1>
}
Quest for Codev2.0.0
/
SIGN IN