Kotlin / kotlin-fullstack-sample

Kotlin Full-stack Application Example
https://kotlinlang.org
Apache License 2.0
1.21k stars 169 forks source link

How to use local styles? #26

Open StokeMasterJack opened 7 years ago

StokeMasterJack commented 7 years ago

In react we go like this:

const s = { color:"red" }
<div style={s} >Hello</div>

How to do the equivalent in Kotlin React?

gnefedev commented 6 years ago
    attrs {
        style = kotlinext.js.js {
            textAlign = "left"
        }
    }