尝试设置实际的propTypes。但显示类似的错误
尝试导入错误:"FieldInputProps"未从"react final form"导出。
import { FieldInputProps, FieldMetaState } from 'react-final-form';
const TextInput = ({
input: { name, onChange, value, type = 'text', placeholder, ...restInput },
meta
}) => {
.....Some Component Functionality.....
};
TextInput.propTypes = {
input: FieldInputProps,
meta: FieldMetaState
}
不确定为什么会发生这种情况,如何解决?
检查package.json中react最终表单的版本。我在这个沙箱中没有错误:https://codesandbox.io/s/epic-jennings-i32w6?file=/src/App.js,使用6.5.2