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.
11 lines (10 loc) • 307 B
TypeScript
import { Component } from 'react';
interface DesmyNoDataFoundProps {
message?: string;
action_label?: string;
onAction?: () => void;
}
declare class DesmyNoDataFound extends Component<DesmyNoDataFoundProps> {
render(): import("react/jsx-runtime").JSX.Element;
}
export { DesmyNoDataFound };