fix: form control-ref.md typescript error (#30885)

https://github.com/ant-design/ant-design/pull/30829#issuecomment-855211477
This commit is contained in:
afc163 2021-06-07 12:09:44 +08:00 committed by GitHub
parent 7a3bf8287f
commit 2142180090
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,7 +15,7 @@ We recommend use `Form.useForm` to create data control. If you are using class c
```tsx
import { Form, Input, Button, Select } from 'antd';
import { FormInstance } from 'antd/lib/form';
import { FormInstance } from 'antd/es/form';
const { Option } = Select;