mirror of
https://github.com/penpot/penpot.git
synced 2025-01-09 16:30:37 -05:00
13 lines
245 B
Text
13 lines
245 B
Text
|
(ns uxbox.core
|
||
|
(:require [uxbox.ui :as ui]
|
||
|
[uxbox.ui.navigation]
|
||
|
[uxbox.state]
|
||
|
[uxbox.rstore]
|
||
|
[goog.dom :as dom]))
|
||
|
|
||
|
(enable-console-print!)
|
||
|
|
||
|
(let [dom (dom/getElement "app")]
|
||
|
(ui/mount! dom))
|
||
|
|