RT
static defaultProps = {
fields: 123,
}
Form.create({
mapPropsToFields(props) {
console.log(props) // {}
},
})(Comp)
RT
static defaultProps = {
fields: 123,
}
Form.create({
mapPropsToFields(props) {
console.log(props) // {}
},
})(Comp)
props is the value passed from the upper component
.