interface IRecipeProps { ingredients?: string[]; title?: string; img?: string; instructions?: string; }
interface IRecipeState {}
class Recipe extends Component<IRecipeProps, IRecipeState> {}
Solution
interface IRecipeProps { ingredients?: string[]; title?: string; img?: string; instructions?: string; }
interface IRecipeState {}
class Recipe extends Component<IRecipeProps, IRecipeState> {}
Solution
登录后可发表评论。
暂无评论。