diff --git a/re-natal.coffee b/re-natal.coffee index 44bb93e..65c986e 100644 --- a/re-natal.coffee +++ b/re-natal.coffee @@ -76,7 +76,7 @@ interfaceConf = android: ["core.cljs"] common: [] other: [["sablono_compiler.clj","sablono/compiler.clj"],["support.cljs","re_natal/support.cljs"]] - deps: ['[rum "0.9.1" :exclusions [cljsjs/react cljsjs/react-dom sablono]]'] + deps: ['[rum "0.10.8" :exclusions [cljsjs/react cljsjs/react-dom sablono]]'] shims: ["cljsjs.react", "cljsjs.react.dom", "sablono.core"] sampleCommandNs: '(in-ns \'$PROJECT_NAME_HYPHENATED$.ios.core)' sampleCommand: '(swap! app-state assoc :greeting "Hello Clojure in iOS and Android with Rum!")' diff --git a/resources/cljs-rum/core.cljs b/resources/cljs-rum/core.cljs index 2f53351..bdd0137 100644 --- a/resources/cljs-rum/core.cljs +++ b/resources/cljs-rum/core.cljs @@ -22,9 +22,9 @@ (defonce app-state (atom {:greeting "Hello Clojure in iOS and Android!"})) -(defc AppRoot < rum/cursored-watch [state] +(defc AppRoot < rum/reactive [state] (view {:style {:flexDirection "column" :margin 40 :alignItems "center"}} - (text {:style {:fontSize 30 :fontWeight "100" :marginBottom 20 :textAlign "center"}} (:greeting @state)) + (text {:style {:fontSize 30 :fontWeight "100" :marginBottom 20 :textAlign "center"}} (:greeting (rum/react state))) (image {:source logo-img :style {:width 80 :height 80 :marginBottom 30}}) (touchable-highlight {:style {:backgroundColor "#999" :padding 10 :borderRadius 5} @@ -37,4 +37,4 @@ (defn init [] (mount-app) - (.registerComponent app-registry "$PROJECT_NAME$" (fn [] root-component-factory))) \ No newline at end of file + (.registerComponent app-registry "$PROJECT_NAME$" (fn [] root-component-factory)))