Skip to content

Instantly share code, notes, and snippets.

@dimovich
Last active July 15, 2019 19:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dimovich/34a75744b0c1d8e1b13ae19c2cb324a6 to your computer and use it in GitHub Desktop.
Save dimovich/34a75744b0c1d8e1b13ae19c2cb324a6 to your computer and use it in GitHub Desktop.
(ns ^:figwheel-hooks yourapp.core
(:require [reagent.core :as r]))
(defn title
[]
[:h1 "mooo"])
(defn app []
[title])
(defn ^:after-load reload []
(r/render
[app]
(.getElementById js/document "app")))
(defn ^:export main []
(reload))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment