Created
May 30, 2021 17:12
-
-
Save ng-the-engineer/40e890f24c62d95ed3ec5243191ad8e4 to your computer and use it in GitHub Desktop.
Code snippet of tutorial running tracker
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const toggle = () => { | |
if (isStart === null) { | |
isStart = true; | |
startTracking(); | |
} else { | |
isStart = !isStart; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment