Created
July 24, 2017 12:57
-
-
Save daiyi/77dce421a5fb59db71893b6727e92010 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
(ns hello.core | |
(:require [reagent.core :as reagent] | |
[re-frame.core :as re-frame])) | |
(defn ui [] | |
[:div | |
[:p "hello!"]]) | |
;; This renders the app to the right-hand panel | |
(reagent/render | |
[ui] | |
(js/document.getElementById "app")) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment