Created
January 9, 2018 01:09
-
-
Save jrheard/8c3b19198c36a0efa19be059475e3fa4 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
(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