rsnext/test/integration/dynamic-routing/pages/p1/p2/all-ssg/[...rest].js
JJ Kasper c9d9f1131c
Remove unstable_ prefix from new methods (#10723)
* Rename getServerProps to getServerSideProps

* Remove unstable_ prefix from new methods

* Add error when legacy methods are detected

* Add legacy methods for babel transform

* Add unstable_getServerSideProps also

* Apply suggestions from code review

Co-Authored-By: Joe Haddad <joe.haddad@zeit.co>

* Update types import

Co-authored-by: Joe Haddad <timer150@gmail.com>
2020-02-27 11:57:39 -06:00

16 lines
282 B
JavaScript

function All({ params }) {
return <div id="all-ssg-content">{JSON.stringify(params)}</div>
}
export function getStaticProps({ params }) {
return { props: { params } }
}
export function getStaticPaths() {
return {
paths: [],
fallback: true,
}
}
export default All