Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
function throwServerError() {
throw new Error('Server component error in app router')
}
function callServerError() {
throwServerError()
}
export default function ServerErrorPage() {
callServerError()
return <div></div>
}