Skip to content

Instantly share code, notes, and snippets.

@jrheard
Created January 9, 2018 01:09
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 jrheard/8c3b19198c36a0efa19be059475e3fa4 to your computer and use it in GitHub Desktop.
Save jrheard/8c3b19198c36a0efa19be059475e3fa4 to your computer and use it in GitHub Desktop.
(def cell-class (r/atom "red"))
(defn colorful-cell []
[:div.cell
{:class @cell-class
:on-click #(if (= @cell-class "red")
(reset! cell-class "green")
(reset! cell-class "red"))}
""])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment