我刚刚开始打字稿,但遇到了无法解决的问题。 我正在尝试将道具从一个功能组件传递到另一个。 但是每当我尝试执行此操作时,都会出现此错误。
<PostOnPage info={items.id} />
Type '{ info: any; }' is not assignable to type 'IntrinsicAttributes & { children?: ReactNode; }'.
Property 'info' does not exist on type 'IntrinsicAttributes & { children?: ReactNode; }'. TS2322
有什么办法解决这个问题?
我以为是因为在我的第二个组件中键入了道具,所以我试图像这样更改它。
const PostOnPage: React.FC = (props: any) => {
但是没有用。 请帮助我