rsnext/test/integration/getserversideprops/pages/blog/[post]/[comment].js

26 lines
520 B
JavaScript

import React from 'react'
import Link from 'next/link'
// eslint-disable-next-line camelcase
export async function unstable_getServerSideProps({ query }) {
return {
props: {
post: query.post,
comment: query.comment,
time: new Date().getTime(),
},
}
}
export default ({ post, comment, time }) => {
return (
<>
<p>Post: {post}</p>
<p>Comment: {comment}</p>
<span>time: {time}</span>
<Link href="/">
<a id="home">to home</a>
</Link>
</>
)
}