Solved some console errors

This commit is contained in:
2021-10-01 18:53:35 -03:00
parent a0d0497008
commit c89e3e4021
2 changed files with 2 additions and 2 deletions

View File

@@ -6,7 +6,7 @@ const DarkMode = () => {
<input type="checkbox" id="dark-mode_toogle-switch" onChange={() => {
}}/>
<label for="dark-mode_toogle-switch"></label>
<label htmlFor="dark-mode_toogle-switch"></label>
</div>
)
}

View File

@@ -97,7 +97,7 @@ const MainPomodoro = (props) => {
</h3>
</div>
<button class="start-pomodoro" onClick={() => props.setTimerOn(!props.timerOn)}>{
<button className="start-pomodoro" onClick={() => props.setTimerOn(!props.timerOn)}>{
props.timerOn ? 'STOP' : 'START'
}</button>