import React from 'react'; import StarRating from "./StarRating"; import MenuList from "./MenuList"; const RestaurantInfo = ({ restaurant }) => { return (

{restaurant.name}

{restaurant.cuisineType}

{restaurant.operatingHours}

Ul. {restaurant.address}

); } export default RestaurantInfo;