Created
September 21, 2015 22:56
-
-
Save cassiomarques/2c31a2341d4a017c2a90 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defn bind-input [input-atom] | |
#(reset! input-atom (-> %1 .-target .-value))) | |
(defn some-component [] | |
(let [value-atom (r/atom nil) | |
[:input {:type "text" :on-change (bind-input value-atom)}])) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment