我想访问自定义组件中的验证道具,
这是我的组成部分
<Field name="firstName" validate={[ required() ]} label="First Name" component={MyCustomComponent} />
MyCustomComponent.jsx
function MyCustomComponent(props){
const isRequired = props.validate
return(<div> <span>*<span> .... </div>)
}
无法访问mycustom组件中的验证道具。