import Loading from '..'; import React from 'react'; import ReactDOM from 'react-dom'; import { Button, Form, Input } from '../..'; const FormItem = Form.Item; const layout = { labelCol: { fixedSpan: 4, }, wrapperCol: { span: 18, }, }; class App extends React.Component { state = { visible: false, }; setVisible(visible) { this.setState({ visible, }); } render() { const CustomForm = () => (
); const ControlButton = () => (