Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
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