mirror of
https://github.com/IgnatZakalinsky/home-works.git
synced 2025-12-18 12:31:16 +00:00
fix clock
This commit is contained in:
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user