re-frame/src/re_frame/db.cljc

12 lines
324 B
Clojure

(ns re-frame.db
(:require [re-frame.interop :refer [ratom]]))
;; -- Application State --------------------------------------------------------------------------
;;
;; Should not be accessed directly by application code.
;; Read access goes through subscriptions.
;; Updates via event handlers.
(def app-db (ratom {}))