export function getServerSideProps({ query }) { return { props: query } } export default function Single(props) { return
{JSON.stringify(props)}
}