/* eslint-disable react/prop-types */ import React from 'react'; import { Label, Icon, Image, Grid, Segment, Header, } from 'semantic-ui-react'; import { AD_HIGHLIGHT_COLOR } from '../store/utility'; // *************************************************** // *************** Display one ad Post *************** // *************************************************** function AdDetail({ adId, adHeader, adBody, adPosted, adLocation, adAge, adImgURL, highlightAd, onAdClick, }) { const segmentStyle = { padding: '0.5em', backgroundColor: highlightAd ? AD_HIGHLIGHT_COLOR : null, }; const headerStyle = { border: 0, margin: '0em 0em -0.25em 0em', background: '#4B4f69', color: 'white', cursor: 'pointer', }; return (
   {adHeader}
{/* */} ); } export default AdDetail;