rsnext/test/integration/prerender-legacy/pages/blog/[post].js
Joe Haddad ca3f881a42 s/getStaticParams/getStaticPaths/ (#9565)
* WIP: rename get static paths

* Adjust logic

* Add warning

* rename constant

* Check for error when using old method

* Add friendly error message

* Test for message of invalid keys

* replace index with dots
2019-11-27 21:46:16 -06:00

20 lines
408 B
JavaScript

import React from 'react'
// eslint-disable-next-line camelcase
export async function unstable_getStaticParams() {
return ['/blog/post-1']
}
// eslint-disable-next-line camelcase
export async function unstable_getStaticProps({ params }) {
return {
props: {
post: params.post,
time: (await import('perf_hooks')).performance.now(),
},
}
}
export default () => {
return <div />
}