next.js/examples/with-mobx/pages/ssg.js
ssg.js12 lines380 B
import Page from "../components/Page";

export default function SSG() {
  return <Page title="Index Page" linkTo="/other" />;
}

// If you build and start the app, the date returned here will have the same
// value for all requests, as this method gets executed at build time.
export function getStaticProps() {
  return { props: { initialState: { lastUpdate: Date.now() } } };
}
Quest for Codev2.0.0
/
SIGN IN