import React from 'react'; import { Button, Drawer } from 'antd'; import IceFormModal from './IceFormModal'; class IceFormDrawer extends IceFormModal { render() { const { fields, adapter } = this.props; return ( this.hide()} visible={this.state.visible} bodyStyle={{ paddingBottom: 80 }} zIndex={1200} maskClosable={false} footer={(
)} > {this.createForm(fields, adapter)}
); } } export default IceFormDrawer;