0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-24 15:39:50 -05:00
penpot/frontend/uxbox/core.cljs

14 lines
272 B
Text
Raw Normal View History

2015-06-18 19:35:50 +02:00
(ns uxbox.core
2015-12-13 22:57:14 +02:00
(:require [uxbox.state]
[uxbox.ui :as ui]
2015-06-18 19:35:50 +02:00
[uxbox.ui.navigation]
2015-12-13 22:57:14 +02:00
[uxbox.router]
2015-06-18 19:35:50 +02:00
[uxbox.rstore]
[goog.dom :as dom]))
(enable-console-print!)
(let [dom (dom/getElement "app")]
(ui/mount! dom))