import { useRouter } from 'next/router' export default function Gsp(props) { if (useRouter().isFallback) { return 'Loading...' } return ( <>

change me

{JSON.stringify(props)}

bottom

) } export const getStaticProps = async () => { const count = 1 return { props: { count, random: Math.random(), }, } }