UNPKG

@ssplib/react-components

Version:
10 lines (9 loc) 276 B
import { ReactNode } from 'react'; interface TableErrorStateProps { error: null | { status: number; }; customErrorMsg?: string | ReactNode; } export declare function TableErrorState({ customErrorMsg, error }: TableErrorStateProps): JSX.Element; export {};