react tsx组件中使用 antd From 表单,父组件传值到子组件类型定义报错

react tsx组件中使用 antd From 表单,父组件传值到子组件类型定义报错

解决方案:
引入antd 类型Form类型声明 继承 antd类型声明中的类

import { FormComponentProps } from 'antd/lib/form';

interface MyProps extends FormComponentProps {
  text?: string;
}

const Son = (props: MyProps): JSX.Element => {
  return  <Form>...</Form>
  
const SonForm = Form.create<MyProps>({ name: 'son_form' })(Son);

export default SonForm;

你可能感兴趣的:(前端,reactjs,javascript,前端,typescript,react)