How can components wrapped by react antd form components be wrapped by connect again?

in ant design, we usually put the form component

export default MHeader = Form.create({})(MHeader);

then

let {getFieldProps} = this.props.form;
const { getFieldDecorator } = this.props.form;

but we redux also need to wrap components in connect, and then get the corresponding data from this.props, so what to do when connect and antd form packaging components are used together, and how to get getFieldProps and data

Oct.22,2021

resolved, export default Sign = Form.create ({}) (connect (mapStateToProps) (Sign));

)
Menu