UNPKG

@blocklet/payment-react

Version:

Reusable react components for payment kit v2

8 lines (7 loc) 275 B
interface ErrorViewProps { error: string; errorCode?: 'SESSION_EXPIRED' | 'EMPTY_LINE_ITEMS' | 'STOP_ACCEPTING_ORDERS' | null; mode?: string; } export default function ErrorView({ error, errorCode, mode }: ErrorViewProps): import("react").JSX.Element; export {};