环境
- antd 3.2.2
- typescript 2.7.1
主要代码
class Form1 extends React.Component {
...
}
const Form2 = Form.create({
mapPropsToFields(props) {
return {
name: Form.createFormField({
value: props.name,
}),
};
},
})(Form1);
报错
antd官方文档
https://ant.design/components...
Form().creact(...)