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 ( <>

Post: {post}

Comment: {comment}

time: {time} to home ) }