rsnext/test/integration/config-promise-error/pages/index.js
JJ Kasper 1c1d5d01f8 Throw error when Promise is returned in next.config (#6476)
After discussion, it was decided we should throw an error when a promise is returned in `next.config.js` as this isn't supported

Fixes: #6416
2019-02-28 14:39:51 +01:00

5 lines
83 B
JavaScript

export default function Index (props) {
return (
<div>Index Page</div>
)
}