UNPKG

@kubit-ui-web/react-components

Version:

Kubit React Components is a customizable, accessible library of React web components, designed to enhance your application's user experience

10 lines (9 loc) 356 B
import React from 'react'; interface IErrorBoundaryProvider { children: React.ReactNode; showErrorMessage?: boolean; idCreateModal?: string | null; customFallback?: JSX.Element; } export declare const ErrorBoundaryProvider: ({ children, showErrorMessage, idCreateModal, customFallback, }: IErrorBoundaryProvider) => JSX.Element; export {};