export default ({ url }) => ( <>

root catch-all

{url}

) export const getServerSideProps = ({ req, res }) => { return { props: { url: req.url, }, } }