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 <SuperButton
id={'hw9-button-start'} id={'hw9-button-start'}
disabled={!timerId} // пишут студенты disabled={!!timerId} // пишут студенты
onClick={start} onClick={start}
> >
start start
</SuperButton> </SuperButton>
<SuperButton <SuperButton
id={'hw9-button-stop'} id={'hw9-button-stop'}
disabled={!!timerId} // пишут студенты disabled={!timerId} // пишут студенты
onClick={stop} onClick={stop}
> >
stop stop