next.js/test/e2e/deferred-entries/pages/static-props-secondary.tsx
static-props-secondary.tsx18 lines310 B
type StaticPropsSecondaryPageProps = {
  message: string
}

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

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