fix clock

This commit is contained in:
neko
2022-06-15 13:20:00 +03:00
parent 7bfb635a37
commit 9c0c1c2e14

View File

@@ -62,14 +62,14 @@ function Clock() {
<SuperButton
id={'hw9-button-start'}
disabled={!timerId} // пишут студенты
disabled={!!timerId} // пишут студенты
onClick={start}
>
start
</SuperButton>
<SuperButton
id={'hw9-button-stop'}
disabled={!!timerId} // пишут студенты
disabled={!timerId} // пишут студенты
onClick={stop}
>
stop