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-05-05T11:46:05.000020Z

@ddrbt try this

(defn root []
  [:div
   (chart)
   [:h1 "hi"]])

2018-05-05T11:46:39.000081Z

this should work

[:ul
  (for [item @some-items]
    [:li {:key item} item])]

ddrbt 2018-05-05T12:48:29.000030Z

Oh sorry, the second message was a reply. I think cljsjs/recharts and rum have conflicting dependencies. Having recharts on the classpath prevented rum from mounting. Will investigate whether :exclusions could fix it