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 (