Files
integreat/src/cljs/auto_ap/db.cljs
2019-01-18 07:44:12 -08:00

14 lines
315 B
Clojure

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