Skip to content

Commit

Permalink
feat: msw 적용
Browse files Browse the repository at this point in the history
  • Loading branch information
Leeseunghwan7305 committed Mar 8, 2024
1 parent 87bf06e commit 399881b
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/components/auctionDetailPage/ProductInfo/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import classNamees from 'classnames/bind';
import Navigator from '@/src/common/Navigator';
import { useRecoilValue } from 'recoil';
import { arriveLocationState } from '@/src/atom';
import { AiFillLike, AiOutlineLike } from 'react-icons/ai';
import Map from '../../../common/Map';
import styles from './index.module.scss';

Expand Down Expand Up @@ -88,9 +89,9 @@ const ProductInfo = ({ productInfo, arriveLocation }: Props) => {
)}

<div className={cx('like')}>
{/* <div onClick={clickLike}>
{like ? <AiFillLike size={64} /> : <AiOutlineLike size={64} />}
</div> */}
<div onClick={clickLike}>
<AiFillLike size={64} />
</div>
<p className={cx('likeNum')}>{board.likesCount}</p>
</div>
<button
Expand Down

0 comments on commit 399881b

Please sign in to comment.