You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fun RenderContext.foo() {
val store = storeOf(false)
div { // It's broken without this div!
store.data.render {
p { +"$it } } } clickButton { text("Toggle") }.map { !store.current } handledBy store.update}
At first it looks ok. But after clicking the button, I get the UnsupportedOperationException and the text "true" appears after the button (while the inital "false" stays above the button).
See example Code
The text was updated successfully, but these errors were encountered: