Skip to content

Instantly share code, notes, and snippets.

@quii
Created August 11, 2015 10:11
Show Gist options
  • Save quii/381c6f8009cb045ffef4 to your computer and use it in GitHub Desktop.
Save quii/381c6f8009cb045ffef4 to your computer and use it in GitHub Desktop.
(def counter (atom 0))
(defn click-counter [] [:input {:type "button" :value "clicky" :on-click #(swap! counter inc)}])
(defn home-page []
[:div [:h1 "Counter " @counter] [click-counter]])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment