UNPKG

pagamio-frontend-commons-lib

Version:

Pagamio library for Frontend reusable components like the form engine and table container

8 lines (7 loc) 279 B
import type { ApiErrorResponse } from '../../api'; interface ErrorStateProps { error: ApiErrorResponse | Error; onRetry?: () => void; } declare const ErrorState: ({ error, onRetry }: ErrorStateProps) => import("react/jsx-runtime").JSX.Element; export default ErrorState;