import React from 'react' import Link from 'next/link' // eslint-disable-next-line camelcase export async function getServerSideProps({ query }) { return { props: { post: query.post, comment: query.comment, time: new Date().getTime(), }, } } export default ({ post, comment, time }) => { return ( <>

Post: {post}

Comment: {comment}

time: {time} to home ) }