Spaces:
Sleeping
Sleeping
File size: 468 Bytes
22c310d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
// a card item represent a news in newsSection
import { Card } from "react-bootstrap";
export default function MenuItem( {dishName, description, imageSrc} ) {
return (
<Card className="align-items-center">
<Card.Img variant="top" src={imageSrc}/>
<Card.Body>
<Card.Title>{dishName}</Card.Title>
<Card.Text>
{description}
</Card.Text>
</Card.Body>
</Card>
);
} |