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