()
| 18 | } |
| 19 | |
| 20 | render() { |
| 21 | const { getFieldProps } = this.props.form; |
| 22 | return ( |
| 23 | <div> |
| 24 | <input {...getFieldProps('normal')} /> |
| 25 | <input |
| 26 | {...getFieldProps('async', { |
| 27 | rules: [this.check], |
| 28 | })} |
| 29 | /> |
| 30 | </div> |
| 31 | ); |
| 32 | } |
| 33 | } |
| 34 | |
| 35 | Test = createForm({ |
no test coverage detected