Created
January 5, 2016 18:11
-
-
Save hugooliveirad/6a5b7dbbaa5658fc5a98 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 button [props _] | |
(om/component | |
(dom/button nil (:children props)))) | |
(def render-out (om/render-to-object button {:children "text"})) | |
(is (= "text" (:children render-out)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment