| 12345678910111213141516171819202122 |
- import React from 'react';
- import { Form, Input } from 'antd';
- const FormItem = Form.Item;
- class StyleManager extends React.Component {
- constructor(props) {
- super(props);
- this.state = {};
- }
- render() {
- const { formItemLayout } = this.props;
- return (
- <Form>
- <FormItem label='图例' {...formItemLayout}>
- <Input />
- </FormItem>
- </Form>
- );
- }
- }
- export default Form.create()(StyleManager);
|