Working with State
fun subscribe(observer: (S) -> Unit): () -> Unitval observable = ObservableValue("test")
div().bind(observable) { state ->
+state
}val text = text(label = "Enter something")
div().bind(text) {
+"You entered: $it"
}Flows
Sub-stores
Collections binding
Last updated