Remove Countdown component and associated styles
This commit is contained in:
parent
740651eef1
commit
19e9b5ca52
2 changed files with 0 additions and 34 deletions
|
@ -1,16 +0,0 @@
|
||||||
.IconAnchor {
|
|
||||||
margin: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
a {
|
|
||||||
color: #dcdcdc;
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
a:hover {
|
|
||||||
color: #808080;
|
|
||||||
}
|
|
||||||
|
|
||||||
a:active {
|
|
||||||
color: #a9a9a9;
|
|
||||||
}
|
|
|
@ -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>;
|
|
||||||
};
|
|
Loading…
Add table
Reference in a new issue