Project/final
2023. 9. 25.
[9.22(금) 북스탁 프로젝트] 도서 역경매 등록 | 경매 마감기한 설정 구현
매번 수정전 css캡처하는 걸 까먹는다ㅠㅠ 원래는 정말,, 인풋박스 나부랭이들만있었다 ! 들쑥날쑥 정말,, 이정도 수정하는데도 꽤,, 걸린다ㅠㅠ rem의 늪에 빠진 나 ~ㅎㅎ ㅠ.,ㅠ 각설하고! 여기서 내가 구현하고 싶은건! 크림사이트에서 레퍼런스하여 입찰 마감기한을 버튼으로 설정하는 것! useEffect(() => { const currentDate = new Date(); currentDate.setDate(currentDate.getDate() + selectedDays); const formattedDate = currentDate.toLocaleDateString("en-US", { year: "numeric", month: "2-digit", day: "2-digit", }); setProd..