rsnext/test/integration/prerender/pages/blog/[post]/[comment].js
Joe Haddad 6b54e9ed66 Fix Prettier Commit Hook (#9245)
* Apply format to webpack config

* hit all files
2019-10-30 12:35:51 +01:00

32 lines
708 B
JavaScript

import React from 'react'
import Link from 'next/link'
// eslint-disable-next-line camelcase
export async function unstable_getStaticParams () {
return ['/blog/post-1/comment-1', { post: 'post-2', comment: 'comment-2' }]
}
// eslint-disable-next-line camelcase
export async function unstable_getStaticProps ({ params }) {
return {
props: {
post: params.post,
comment: params.comment,
time: new Date().getTime()
},
revalidate: 2
}
}
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>
</>
)
}