UNPKG

@sofaws/dapp-core

Version:

A library to hold the main logic for a dapp on the Elrond Network

12 lines 524 B
import { ReactNode } from 'react'; import { DappModalConfig, DappModalInteractionConfig } from 'UI/DappModal'; import { WithClassnameType } from '../types'; export interface ModalContainerPropsType extends WithClassnameType { children: ReactNode; onClose?: () => void; modalConfig?: DappModalConfig; modalInteractionConfig?: DappModalInteractionConfig; visible?: boolean; } export declare const ModalContainer: (props: ModalContainerPropsType) => JSX.Element; //# sourceMappingURL=ModalContainer.d.ts.map