rum

Simple, decomplected, isomorphic HTML UI library for Clojure and ClojureScript | 0.12.8 https://github.com/tonsky/rum/blob/gh-pages/CHANGELOG.md#0128
Matt Butler 2018-06-11T11:09:01.000051Z

sorry @tonsky I'm not sure I follow, what you do mean specifically by "rum function". Thanks again for the help.

2018-06-11T11:21:22.000064Z

Rum doesn’t have React class exposed because the only thing you can do with it is to create element. So Rum gives you a function that does that for you. If you need to wrap it, create another function and wrap the function that Rum gives you. I think it’s me who don’t follow what your use-case is

2018-06-11T11:21:57.000398Z

(defn wrapped-component [x]
  (create-component {:render [:div x] :will-update #(... x ...))}
this won’t work because you don’t want to create classes dynamically. Only instances

Matt Butler 2018-06-11T12:53:51.000584Z

I think I understand 🙂