rsnext/test/integration/prerender/pages/user/[user]/profile.js
JJ Kasper be42300e1f Ensure directory before flushing cache file (#9187)
* Ensure directory before flushing cache iSSG file

* Add test for prerender cache flush

* Nest the dynamic route test one more level

* update fetch for test

* Update error check
2019-10-25 13:56:00 -07:00

30 lines
597 B
JavaScript

import React from 'react'
import Link from 'next/link'
// eslint-disable-next-line camelcase
export async function unstable_getStaticParams () {
return []
}
// eslint-disable-next-line camelcase
export async function unstable_getStaticProps ({ params }) {
return {
props: {
user: params.user,
time: (await import('perf_hooks')).performance.now()
},
revalidate: 10
}
}
export default ({ user, time }) => {
return (
<>
<p>User: {user}</p>
<span>time: {time}</span>
<Link href='/'>
<a id='home'>to home</a>
</Link>
</>
)
}