Skip to content

Commit

Permalink
Fix: 안쓰는 코드 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
marina-yhm committed Nov 20, 2023
1 parent 9441df9 commit 22ba1c7
Showing 1 changed file with 36 additions and 36 deletions.
72 changes: 36 additions & 36 deletions src/pages/Home/StatusHome/Wait.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,42 +2,42 @@ import React from "react";
import "./DetailHome.css";

const Wait = () => {
const orderInfo = {
orders: [
{
id: 123, //db 인덱스
orderNum: 2, // 그날의 그가게의 주문번호
pickUp: "픽업",
foodies: [
{
name: "아메리카노",
count: 3,
options: ["샷 추가", "휘핑", "ICE", "그란데"],
},
],
phone: "010-6439-3547", // 고객의 전화번호
time: "21/11/08 11:44:30", // 주문시간
payment: "현대카드",
price: 8500,
},
{
id: 133, //db 인덱스
orderNum: 33, // 그날의 그가게의 주문번호
pickUp: "매장",
foodies: [
{
name: "아메리카누",
count: 3,
options: ["샷 추가 *100 ", "휘핑 *1000", "HOT", "그란데"],
},
],
phone: "010-7679-3547", // 고객의 전화번호
time: "23/11/08 11:44:30", // 주문시간
payment: "현대카드",
price: 78500,
},
],
};
// const orderInfo = {
// orders: [
// {
// id: 123, //db 인덱스
// orderNum: 2, // 그날의 그가게의 주문번호
// pickUp: "픽업",
// foodies: [
// {
// name: "아메리카노",
// count: 3,
// options: ["샷 추가", "휘핑", "ICE", "그란데"],
// },
// ],
// phone: "010-6439-3547", // 고객의 전화번호
// time: "21/11/08 11:44:30", // 주문시간
// payment: "현대카드",
// price: 8500,
// },
// {
// id: 133, //db 인덱스
// orderNum: 33, // 그날의 그가게의 주문번호
// pickUp: "매장",
// foodies: [
// {
// name: "아메리카누",
// count: 3,
// options: ["샷 추가 *100 ", "휘핑 *1000", "HOT", "그란데"],
// },
// ],
// phone: "010-7679-3547", // 고객의 전화번호
// time: "23/11/08 11:44:30", // 주문시간
// payment: "현대카드",
// price: 78500,
// },
// ],
// };

return (
<div className="Order-wrapper">
Expand Down

0 comments on commit 22ba1c7

Please sign in to comment.