re-frame/src/re_frame/db.cljc

12 lines
323 B
Plaintext
Raw Normal View History

(ns re-frame.db
(:require [re-frame.interop :refer [ratom]]))
2015-02-24 13:26:49 +00:00
;; -- Application State --------------------------------------------------------------------------
;;
;; Should not be accessed directly by application code
2015-03-04 13:01:03 +00:00
;; Read access goes through subscriptions.
;; Updates via event handlers.
(def app-db (ratom {}))
2015-02-24 13:26:49 +00:00