()
| 249 | |
| 250 | let timer = null; |
| 251 | function tick() { |
| 252 | active = (active + 1) % cards.length; |
| 253 | setActive(active); |
| 254 | } |
| 255 | function start() { |
| 256 | if (timer) return; |
| 257 | timer = setInterval(tick, 1600); |
nothing calls this directly
no test coverage detected