zarm
Version:
基于 React 的移动端UI库
11 lines • 340 B
JavaScript
import attachPropertiesToComponent from '../utils/attachPropertiesToComponent';
import { alert } from './Alert';
import { confirm } from './Confirm';
import { clear, show } from './methods';
import Modal from './Modal';
export default attachPropertiesToComponent(Modal, {
show: show,
clear: clear,
alert: alert,
confirm: confirm
});