export const getServerSideProps = ({ params }) => { console.log({ params }) return { props: { params, }, } } export default function Page(props) { return

{JSON.stringify(props)}

}