I've got this code in a react component ``` div(cl...
# javascript
r
I've got this code in a react component
Copy code
div(classes = "col-lg-12") {
                val teams = state.teams!!
                println(teams)
                for(team in teams) {
                    child(LogComponent::class) {
                        attrs {
                            this.team = team
                        }
                    }
                }
            }