Remove Countdown component and associated styles

This commit is contained in:
Seth 2025-01-29 18:48:13 -05:00 committed by Mirco Wittrien
parent 9b70e4b2e3
commit 0d1ac3ffff
No known key found for this signature in database
GPG key ID: 8B7A2C60CDF65CAC
2 changed files with 0 additions and 34 deletions

View file

@ -1,16 +0,0 @@
.IconAnchor {
margin: 5px;
}
a {
color: #dcdcdc;
text-decoration: none;
}
a:hover {
color: #808080;
}
a:active {
color: #a9a9a9;
}

View file

@ -1,18 +0,0 @@
import { useState, useEffect } from "preact/hooks";
// biome-ignore lint/complexity/noBannedTypes: <explanation>
export default (props: { timeInSeconds: number, callBack?: Function }) => {
const [timeLeft, setTimeLeft] = useState(props.timeInSeconds * 1000); // Convert to milliseconds
useEffect(() => {
if (timeLeft <= 1) return props?.callBack?.();
const timer = setInterval(() => {
setTimeLeft((prev) => prev - 1); // Decrease by 1ms
}, 0);
return () => clearInterval(timer);
}, [timeLeft, props?.callBack]);
return <div>{timeLeft}ms remaining</div>;
};