// a card item represent a news in newsSection import { Card } from "react-bootstrap"; export default function MenuItem( {dishName, description, imageSrc} ) { return ( {dishName} {description} ); }