import { useRouter } from 'next/router' export default function Page(props) { return ( <>

hello from ssr

{JSON.stringify(useRouter().query)}

) } export function getServerSideProps() { return { props: {}, } }