import React from "react"; import styles from "./index.less"; import { Form, Input, Button, Radio } from "antd"; class FormLayoutDemo extends React.Component { constructor() { super(); this.state = { formLayout: "horizontal" }; } handleFormLayoutChange = e => { this.setState({ formLayout: e.target.value }); }; render() { const { formLayout } = this.state; const formItemLayout = formLayout === "horizontal" ? { labelCol: { span: 4 }, wrapperCol: { span: 14 } } : null; const buttonItemLayout = formLayout === "horizontal" ? { wrapperCol: { span: 14, offset: 4 } } : null; return (
Horizontal Vertical Inline
); } } export default () => (
);