Move all react/rum related stuff under one unique ns.

This commit is contained in:
Andrey Antukh 2016-01-12 19:30:04 +02:00
parent 8151faf15e
commit 809ac8cbc7
27 changed files with 137 additions and 156 deletions

View file

@ -10,7 +10,6 @@
[uxbox.ui.users :as users]
[uxbox.ui.dashboard :as dashboard]
[uxbox.ui.workspace :refer (workspace)]
[uxbox.ui.util :as util]
[uxbox.ui.mixins :as mx]
[uxbox.ui.shapes]))
@ -34,9 +33,9 @@
)))
(def app
(util/component {:render app-render
:mixins [rum/reactive]
:name "app"}))
(mx/component {:render app-render
:mixins [rum/reactive]
:name "app"}))
(defn init
[]
(let [app-dom (gdom/getElement "app")