javascript:类型’Readonly <{children?:ReactNode;不存在属性’XYZ’; }>
Others 2021-12-21 03:24:50 2021-12-21 03:24:50 1426 次浏览interface IRecipeProps {
ingredients?: string[];
title?: string;
img?: string;
instructions?: string;
}
interface IRecipeState {
}
class Recipe extends Component<IRecipeProps, IRecipeState> {}
解决
Links: 546