UNPKG

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.

36 lines (34 loc) 793 B
import { Component, CSSProperties } from 'react'; interface HomeProps { children?: React.ReactNode; isLoading: boolean; name?: string; image?: string; caption?: string; key?: any; data: { name: string; level: number; }; is_open?: boolean; optionList?: MenuItem[]; onAction: (action: any) => void; className?: string; style?: CSSProperties; edit_permission: boolean; delete_permission: boolean; } interface HomeState { content: any; } interface MenuItem { id?: string; name: string; icon?: any; data?: any; } declare class DesmyListCard extends Component<HomeProps, HomeState> { constructor(props: HomeProps); render(): import("react/jsx-runtime").JSX.Element; } export { DesmyListCard };