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
2018-12-31T00:57:17.010500Z

hi folks! Maybe I'm missing something obvious, I'm trying to figure out how to render 3rd parry components. So instead of [:div ...] I want to do [js/SomeComponent ...]. But I'm just getting errors when trying to do that. Any handy pointers? 🙂

2018-12-31T00:58:31.010800Z

namely, Warning: Functions are not valid as a React child. This may happen if you return a Component instead of <Component /> from render. Or maybe you meant to call this function rather than return it. and Error: Objects are not valid as a React child (found: object with keys {key, val, __hash, cljs$lang$protocol_mask$partition0$, cljs$lang$protocol_mask$partition1$}). If you meant to render a collection of children, use an array instead.

2018-12-31T01:07:14.011800Z

only way I've found that works is to do a plain (.createElement js/React js/SomeComponent ...), but then child elements to js/SomeComponent can't use the hiccup syntax