Skip to content

Commit

Permalink
Feat: 홈화면 매출 가격->건수 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
imi21123 committed Feb 27, 2024
1 parent 503e03b commit ed0d783
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions src/pages/Main/MainPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ import { IMAGES } from "../../constants/images";
import "./MainPage.css";

const MainPage = () => {
const thisWeekCases = 23;
const thisMonthCases = 54;
const notices = [
{
id: 1,
Expand Down Expand Up @@ -72,12 +74,14 @@ const MainPage = () => {
<span className="main__sales__case">
<div className="main__sales__case__this-week">
<span className="main__sales__case__title">이번주</span>
<span className="main__sales__case__this-week-amount">0원</span>
<span className="main__sales__case__this-week-amount">
{thisWeekCases}
</span>
</div>
<div className="main__sales__case__this-month">
<span className="main__sales__case__title">이번달</span>
<span className="main__sales__case__this-month-amount">
0원
{thisMonthCases}
</span>
</div>
</span>
Expand Down Expand Up @@ -134,10 +138,7 @@ const MainPage = () => {
</span>
<Link to="http://pf.kakao.com/_ZxiEjG/chat">
<div className="main__notice__consultation__kakao-btn">
<img
src={IMAGES.kakao_open_chat}
alt="kakao"
/>
<img src={IMAGES.kakao_open_chat} alt="kakao" />
</div>
</Link>
</span>
Expand Down

0 comments on commit ed0d783

Please sign in to comment.