desmy-react
Version:
Introducing an easy-to-use, lightning-fast React.js component that streamlines your development process. Our solution prioritizes simplicity, speed, and optimization, making it a breeze to build projects in React.
15 lines (14 loc) • 418 B
TypeScript
import { Component } from 'react';
interface NetworkErrorProps {
icon?: string;
errormessage?: string;
onRetry?: () => void;
onCancel?: () => void;
}
interface NetworkErrorState {
}
declare class DesmyNetworkError extends Component<NetworkErrorProps, NetworkErrorState> {
constructor(props: NetworkErrorProps);
render(): import("react/jsx-runtime").JSX.Element;
}
export { DesmyNetworkError };