next.js/test/integration/prerender-revalidate/pages/static.js
static.js19 lines237 B
export async function getStaticProps() {
  return {
    props: {
      world: 'world',
    },
    revalidate: 10,
  }
}

const Page = ({ world }) => {
  return (
    <div>
      <p>hello {world}</p>
    </div>
  )
}

export default Page
Quest for Codev2.0.0
/
SIGN IN