import React from 'react'; import { Dropdown } from 'react-bootstrap'; import './Order.css' const Order = ({order, handleAction}) => { const {_id, name, email, serviceName, status} = order; const setBackground = { color: '#FFFFFF', background: status === 'Pending' ? 'rgb(255 78 96)' : status === 'On going' ? 'rgb(73 146 255)' :'rgb(31 204 123)' } return ( {name} {email} {serviceName} {status} handleAction(_id, "Pending")} id="pending">Pending handleAction(_id, "On going")} id="ongoing">On going handleAction(_id, "Done")} id="done">Done ); }; export default Order;