Skip to content

Commit

Permalink
Fix 점주 페이지 버튼 수정
Browse files Browse the repository at this point in the history
Fix 점주 페이지 버튼 수정
  • Loading branch information
KangGuide committed Apr 20, 2024
1 parent 85e3288 commit b662734
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/pages/ceo/Inventory.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import axios from "axios";
import React, { useEffect, useState } from "react";
import Pagination from "react-js-pagination";
import { FaArrowDown91 } from "react-icons/fa6";

export default function Inventory() {
const [inventory, setInventory] = useState([]);
Expand Down Expand Up @@ -72,7 +73,7 @@ export default function Inventory() {
<th className="w-1/2 py-1">상품 이름</th>
<th className="w-1/5 py-2">가격</th>
<th className="w-1/4 py-2">수량</th>
<th className="w-1/4 py-2">소비기한<button onClick={expBtn}>정렬</button></th>
<th className="w-1/4 py-2">소비기한 &nbsp;<button onClick={expBtn}><FaArrowDown91 /></button></th>
</tr>
</thead>
<tbody>
Expand Down

0 comments on commit b662734

Please sign in to comment.