diff --git a/frontend/src/pages/pc/Schedule.jsx b/frontend/src/pages/pc/Schedule.jsx index 71276bf..e8e4c59 100644 --- a/frontend/src/pages/pc/Schedule.jsx +++ b/frontend/src/pages/pc/Schedule.jsx @@ -1,6 +1,6 @@ import { useState } from 'react'; import { motion, AnimatePresence } from 'framer-motion'; -import { Clock, MapPin, Users, ChevronLeft, ChevronRight } from 'lucide-react'; +import { Clock, MapPin, Users, ChevronLeft, ChevronRight, ChevronDown } from 'lucide-react'; import { schedules } from '../../data/dummy'; function Schedule() { @@ -106,9 +106,10 @@ function Schedule() { setShowYearMonthPicker(!showYearMonthPicker)} - className="text-xl font-bold hover:text-primary transition-colors" + className="flex items-center gap-1 text-xl font-bold hover:text-primary transition-colors" > - {year}년 {month + 1}월 + {year}년 {month + 1}월 + {/* 년도 선택 */} - - 년도 + + 년도 {yearRange.map((y) => ( {/* 월 선택 */} - - 월 + + 월 {Array.from({ length: 12 }, (_, i) => i).map((m) => (
년도
월