@finagraph/strongbox-finconnect-react
Version:
React components to integrate with Finagraph Strongbox
18 lines (17 loc) • 480 B
TypeScript
import * as React from 'react';
import '../styles.scss';
import { Theme } from '../Models/Theme/Theme';
import { TextContent } from '../Text/TextContent';
export type ErrorState = {
msg: string;
detailedMsg: string;
};
export type ErrorPageProps = {
onDismiss: () => void;
theme?: Theme;
textContent: TextContent;
errorText: string[];
abort?: () => void;
};
declare const ErrorPage: React.FC<ErrorPageProps>;
export default ErrorPage;