renaming and word fiddling

This commit is contained in:
mike-thompson-day8 2015-02-25 00:26:49 +11:00
parent 510199a938
commit 031e9fde53

View File

@ -1,9 +1,12 @@
(ns re-frame.db
(:require [reagent.core :as r]))
(:require [reagent.core :as reagent]))
;; The application state
;; Should never be accessed directly by application code
;; -- Application State --------------------------------------------------------------------------
;;
;; Should not be accessed directly by application code
;; Access is mediated via handlers and subscriptions
(def app-db (r/atom {}))
(def app-db (reagent/atom {}))