Hi.
How would it be possible to use an Om component from within Kioo?
I tried something like the following:
(defsnippet some-snippet
...
(defn my-component
[cursor owner]
(reify
om/IRenderState
(render [_ local-state]
(some-snippet cursor owner local-state))))
;; tried both the following (try1 and try2)... but neither seem to work:
(deftemplate my-template "index.html"
[cursor owner]
{[:span.try1] (content (my-component cursor owner))
[:span.try2] (content (om/build my-component cursor owner))})
Kind regards
Jacob