progress on general ledger.

This commit is contained in:
Bryce Covert
2019-04-03 14:02:17 -07:00
parent 55fb386376
commit 4e3e6d3bea
5 changed files with 78 additions and 52 deletions

View File

@@ -3,6 +3,7 @@
[re-frame.core :as re-frame]
[auto-ap.events :as events]
[auto-ap.views.main :refer [page active-page] ]
[auto-ap.reload :as reload]
[auto-ap.config :as config]
[auto-ap.effects :as effects]
@@ -32,5 +33,4 @@
(re-frame/dispatch-sync [::events/initialize-db (.getItem js/localStorage "jwt")])))
(pushy/start! p/history)
(mount-root))

View File

@@ -0,0 +1,4 @@
(ns ^:figwheel-hooks auto-ap.reload)
(defn ^:after-load reload []
(@(resolve 'auto-ap.core/mount-root)))