P粉5790084122023-07-28 12:34:25
你需要添加一个 Props 的类型或接口,然后你就可以通过解构来获取 subjects。
interface Props { subjects: any } export default function MainCategories({ subjects }: Props) { const tmp = props.subjects; ...
P粉1557104252023-07-28 00:35:26
我经常使用这种模式来实现这个,但主要的关键是定义props。
import { FunctionComponent } from 'react'; interface Props { // In your case subjects: any } const MainCategories: FunctionComponent<Props> = ({subjects}) => ( ... ); export default MainCategories;