Files
integreat/src/cljs/auto_ap/db.cljs
2017-12-20 09:00:45 -08:00

14 lines
319 B
Clojure

(ns auto-ap.db)
(def default-db
{:user (.getItem js/localStorage "jwt")
:company {:name "Campbell Brewing Company"}
:companies []
:invoices {:pending #{}
:unpaid #{}}
:status {:loading false}
:new-invoice {}
:menu {:company {:active? false}
:account {:active? false}}
})