Skip to content

Commit

Permalink
Fix: 사용하지 않는 코드 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
marina-yhm committed Nov 14, 2023
1 parent 4d96800 commit 0f486fe
Showing 1 changed file with 0 additions and 43 deletions.
43 changes: 0 additions & 43 deletions src/pages/Home/Receipt.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -85,46 +85,3 @@ const Receipt = () => {
};

export default Receipt;

{
/* <text>
{orderInfo.orders.map((order) => (
<div className="orderWait">
<div className="orderWait__orderNum">
<text>주문번호 : {order.orderNum}</text>
</div>
<div className="orderWait__phone">
<text>전화번호 : {order.phone}</text>
</div>
<div className="orderWait__time">
<text>주문시간 : {order.time}</text>
</div>
<div className="orderWait__payment">
<text>결제수단 : {order.payment}</text>
</div>
<div className="orderWait__price">
<text>가격 : {order.price}</text>
</div>
<div className="orderWait__pickUp">
<text>픽업방법 : {order.pickUp}</text>
</div>
<div className="orderWait__foodies">
{order.foodies.map((foody) => (
<div className="orderWait__foody">
<div className="orderWait__foody__name">
<text>메뉴 : {foody.name}</text>
</div>
<div className="orderWait__foody__count">
<text>수량 : {foody.count}</text>
</div>
<div className="orderWait__foody__options">
<text>옵션 : {foody.options}</text>
</div>
</div>
))}
</div>
</div>
))}
</text> */
}

0 comments on commit 0f486fe

Please sign in to comment.