Skip to content

Commit

Permalink
feat: add console log for hover state in countdown component
Browse files Browse the repository at this point in the history
  • Loading branch information
dada878 committed Nov 21, 2024
1 parent ef7195e commit 7c8345b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions app/cfp/(submission)/_components/countdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ type TimeLeft = {
export default function CountdownPage() {
const TARGET_DATE = "2025-01-21T23:59:59"; // 可以動態設置
const [isHovered, setIsHovered] = useState(false);
console.log(isHovered);
const [timeLeft, setTimeLeft] = useState<TimeLeft>({
days: 0,
hours: 0,
Expand Down

0 comments on commit 7c8345b

Please sign in to comment.