Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
// @flow
import * as React from "react";
import DefaultErrorPage from "./DefaultErrorPage.react";
import type { Props as DefaultErrorProps } from "./DefaultErrorPage.react";
function Error500Page({
title = "500",
subtitle = "Oops... You just found an error page...",
details = "We are sorry but your request contains bad syntax and cannot be fulfilled...",
action,
}: DefaultErrorProps): React.Node {
return (
<DefaultErrorPage
title={title}
subtitle={subtitle}
details={details}
action={action}
/>
);
}
export default Error500Page;