UNPKG

@atlaskit/dynamic-table

Version:

A dynamic table displays rows of data with built-in pagination, sorting, and re-ordering functionality.

17 lines (16 loc) 446 B
import React, { type ReactNode } from 'react'; type ErrorBoundaryProps = { children: ReactNode; fallback: ReactNode; }; type ErrorBoundaryState = { hasError: boolean; }; export declare class ErrorBoundary extends React.Component<ErrorBoundaryProps, ErrorBoundaryState> { constructor(props: ErrorBoundaryProps); static getDerivedStateFromError(): { hasError: boolean; }; render(): React.ReactNode; } export {};