UNPKG

@carrot-farm/mongsil-ui

Version:
8 lines (7 loc) 379 B
import * as React from 'react'; import Dialog from '../Dialog'; function Confirm(_a) { var title = _a.title, body = _a.body, visible = _a.visible, onOk = _a.onOk, _b = _a.onClose, onClose = _b === void 0 ? function () { } : _b; return (React.createElement(Dialog, { title: title, body: body, visible: visible, onOk: onOk, onCancel: onClose })); } export default Confirm;