Unable to display two components in OM
问题 I am attempting to learn Om, and have come across something I don't understand. I would expect this code (defn search-page-view [app owner] (reify om/IRender (render [_] (dom/div #js {:id "search-block"} "Test") (dom/div #js {:id "results-block"} "Test2")))) (om/root search-page-view app-state {:target (. js/document (getElementById "app"))}) to result in this html: <div id="app> <div id="search-block"> Test </div> <div id="results-block"> Test2 </div> </div> However, it does not! The first