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