react-code-dataset
/
next.js
/test
/development
/pages-dir
/client-navigation
/fixture
/pages
/circular-json-error.js
| function CircularJSONErrorPage() { | |
| return <div>This won't render</div> | |
| } | |
| CircularJSONErrorPage.getInitialProps = () => { | |
| // This creates a circular JSON object | |
| const object = {} | |
| object.arr = [object, object] | |
| object.arr.push(object.arr) | |
| object.obj = object | |
| return object | |
| } | |
| export default CircularJSONErrorPage | |