in packages/react-scripts/template/src/ticker/Ticker.kt [22:27]
override fun componentDidMount() {
timerID = window.setInterval({
// actually, the operation is performed on a state's copy, so it stays effectively immutable
setState { secondsElapsed += 1 }
}, 1000)
}