@massds/mayflower-react
Version:
React versions of Mayflower design system UI components
13 lines (12 loc) • 380 B
TypeScript
export interface ErrorPageProps {
/** The type of error */
type: string;
/** The bold error label to display */
label: string;
/** The title text for the error */
title: string;
/** The descriptive message about the error for users to see */
message: string;
}
declare const ErrorPage: (errorPage: ErrorPageProps) => any;
export default ErrorPage;