Skip to content

Instantly share code, notes, and snippets.

@daiyi
Created July 24, 2017 12:57
(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