From 21421800904c4a32e01d5754f55d70293ec32831 Mon Sep 17 00:00:00 2001 From: afc163 Date: Mon, 7 Jun 2021 12:09:44 +0800 Subject: [PATCH] fix: form control-ref.md typescript error (#30885) https://github.com/ant-design/ant-design/pull/30829#issuecomment-855211477 --- components/form/demo/control-ref.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/form/demo/control-ref.md b/components/form/demo/control-ref.md index fa50327d28..1702f21e70 100644 --- a/components/form/demo/control-ref.md +++ b/components/form/demo/control-ref.md @@ -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;