import React from 'react' import Link from 'next/link' // eslint-disable-next-line camelcase export async function unstable_getStaticPaths() { return { paths: [ '/blog/post-1/comment-1', { params: { 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 }) => { // we're in a loading state if (!post) { return

loading...

} return ( <>

Post: {post}

Comment: {comment}

time: {time} to home ) }