Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { HTTPAccessErrorFallback } from '../http-access-fallback/error-fallback'
function GlobalNotFound() {
return (
<html>
<body>
<HTTPAccessErrorFallback
status={404}
message={'This page could not be found.'}
/>
</body>
</html>
)
}
export default GlobalNotFound