tplus-mobilelogin
Version:
password login module
21 lines (20 loc) • 482 B
TypeScript
import * as React from 'react';
import './ModalPC.less';
interface ISProps {
title: string;
confirmText: string;
modalVisible: boolean;
handleCancel: Function;
handleConfirm: Function;
heightCss?: string;
withCss?: string;
}
interface IState {
}
declare class ModalPC extends React.Component<ISProps, IState> {
constructor(props: any);
handleCancel: () => void;
handleConfirm: () => void;
render(): JSX.Element;
}
export default ModalPC;