import React from "react"; import { useState } from "react"; import { Col, Container, Row, Image, Modal, Button } from "react-bootstrap"; import LoginForm from "../Login/LoginForm"; import ChangePasswordForm from "../Forms/ChangePasswordForm"; import { AiOutlinePlusCircle } from "react-icons/ai" import EditModal from "../Resources/EditModal"; import AddImages from "../Resources/AddImages"; const MenuListing = (props) => { const type = props.type == "hotel" ? "сместувањето" : props.type == "restaurant" ? "ресторанот" : "превозот"; console.log(props.data) return(<> { e.preventDefault(); props.showModal(props.data); console.log("kliknav") }} src="https://www.tasteofhome.com/wp-content/uploads/2019/01/medium-rare-steak-shutterstock_706040446.jpg" style={{ height: "8em", borderRadius: "1em", boxShadow: "0 4px 20px lightblue", maxWidth: "100%", }} >

{props.data.name}

{props.data.ingredients}
Цена:

{props.data.price}$

) } export default MenuListing;