// a card item represent a news in newsSection import { Card, Button } from "react-bootstrap"; export default function MenuItem({ dishName, description, imageSrc, deleteable = false, delButtonCallback = null }) { return ( {dishName} {description} {deleteable ? (
) : (<>)}
); }