import React from 'react' import { Card, Col, Row } from 'react-bootstrap' function OrderCard(props) { return ( 주문 현황 { props.ordered.map((e) => ( {e.products.length > 1 ? {e.products[0].productId.pro_name} 외 {e.products.length - 1}개 : ( {e.products[0].productId.pro_name} )} <>
  • 주문번호 :
  • {e._id}
  • 결제금액 :
  • {e.total}원
  • 배송지 :
  • {e.receiverInfo.address}
    ( {e.receiverInfo.address2} )
  • 주문날짜 :
  • {e.createdAt.substring(0, 10)}
    ) ) }
    ) } export default OrderCard