File size: 571 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
// @flow
import * as React from "react";
import DefaultErrorPage from "./DefaultErrorPage.react";
import type { Props as DefaultErrorProps } from "./DefaultErrorPage.react";
function Error403Page({
title = "403",
subtitle = "Oops... You just found an error page...",
details = "We are sorry but you do not have permission to access this page...",
action,
}: DefaultErrorProps): React.Node {
return (
<DefaultErrorPage
title={title}
subtitle={subtitle}
details={details}
action={action}
/>
);
}
export default Error403Page;
|