mirror of
https://github.com/penpot/penpot.git
synced 2025-01-23 23:18:48 -05:00
13 lines
272 B
Clojure
13 lines
272 B
Clojure
(ns uxbox.core
|
|
(:require [uxbox.state]
|
|
[uxbox.ui :as ui]
|
|
[uxbox.ui.navigation]
|
|
[uxbox.router]
|
|
[uxbox.rstore]
|
|
[goog.dom :as dom]))
|
|
|
|
(enable-console-print!)
|
|
|
|
(let [dom (dom/getElement "app")]
|
|
(ui/mount! dom))
|
|
|