re-natal/resources/cljs/subs.cljs
Artur Girenko a4a8d09fe7 Support loading of static images using approach introduced in RN 0.14
- Used macro to generate js/require for prod compilation and {:uri http://localhost:8080/*} for dev builds.
- Rearranged sources to be able to support dev and prod profiles
2015-11-28 16:20:39 +01:00

9 lines
227 B
Clojure

(ns $PROJECT_NAME_HYPHENATED$.subs
(:require-macros [reagent.ratom :refer [reaction]])
(:require [re-frame.core :refer [register-sub]]))
(register-sub
:get-greeting
(fn [db _]
(reaction
(get @db :greeting))))