import {UserType} from "@/types/UserType"; import {DishType} from "@/types/DishType"; interface Props { user: UserType, dish: DishType, } const DishCard = ({ user, dish }: Props) => { return (