Matus Lestan
Matus Lestan
When I click "Show Application" this is what it opens 
@tjementum and after this solution "Keep Afloat" functionality still works?
yeah, that'd be nice, but meanwhile you can use form like `{:keys [:my-keyw...]}` and you get autocompletion ;)
It's possible that material-ui doesn't want to allow `table-body` to have direct child other than `table-row`. But that's okay. If you need to reuse some piece of code in reagent...
Solution for this is a new cljs feature `:npm-deps`, which allows to include npm packages directly and enables dead code elimination. But it's in first stages, still bit buggy, can't...
This is not really correct. Usage with reagent is lower. To improve readability we can probably rename first "Usage" to "Usage with Om" and make "Using with Reagent" header bigger
Yea, once v1.0.0 reaches release version (not alpha), we'll certainly switch. Right now, I'm not sure if I'll find time to do that (will try), but anyways feel free to...
I've never seen this personally
Try it out like this ``` clojure (defn simple-text-field [text] (let [text-state (r/atom text)] (fn [] [rui/text-field {:id "example" :default-value @text-state :on-change (fn [e] (reset! text-state (.. e -target -value)))}])))...
I haven't really investigated what's situation like in latest reagent with this. But you're right, it's a workaround. I remember having some issues with this back in a day, probably...