package templates
import "track-gopher/derby"
templ Index() {
Derby Race Timer
{ laneComponents() }
}
templ laneComponents() {
for i := 1; i <= 4; i++ {
@laneComponent(i)
}
}
templ laneComponent(lane int) {
Lane { string(rune('0' + lane)) }
--.--.---
}