INFILTRATION: Fix React warnings (#1423)

This commit is contained in:
catloversg
2024-06-25 10:37:57 +07:00
committed by GitHub
parent c0036b03d4
commit 0d8cc54c99
2 changed files with 21 additions and 8 deletions
+13 -5
View File
@@ -5,15 +5,23 @@ interface IProps {
onFinish: () => void;
}
export function Countdown(props: IProps): React.ReactElement {
export function Countdown({ onFinish }: IProps): React.ReactElement {
const [x, setX] = useState(3);
useEffect(() => {
if (x === 0) {
props.onFinish();
return;
onFinish();
}
setTimeout(() => setX(x - 1), 300);
});
}, [x, onFinish]);
useEffect(() => {
const id = setInterval(() => {
setX((previousValue) => previousValue - 1);
}, 300);
return () => {
clearInterval(id);
};
}, []);
return (
<Paper sx={{ p: 1, textAlign: "center" }}>