UNPKG

mantine-entity

Version:

A library combining Mantine, TanStack Query, and Mantine React Table for efficient entity management

10 lines (9 loc) 249 B
import React from "react"; interface ErrorLayoutProps { errorMessage: string; onRetry?: () => void; onRetryReload?: boolean; hideRetryButton?: boolean; } declare const ErrorPage: React.FC<ErrorLayoutProps>; export default ErrorPage;