mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
399e510389
* Make sure lastAppProps always have some value. * Revert "Make sure lastAppProps always have some value." This reverts commit b4ae722d9c1a4460e17dbdc041b111cbd492b2aa. * Throw an error, if we found an empty object from getInitialProps. * Add proper tests for getInitialProps empty check.
5 lines
146 B
JavaScript
5 lines
146 B
JavaScript
const EmptyInitialPropsPage = () => (<div>My Page</div>)
|
|
EmptyInitialPropsPage.getInitialProps = () => null
|
|
|
|
export default EmptyInitialPropsPage
|