Last active
October 3, 2025 21:15
-
-
Save borkdude/795ba9a7785a0f95d2be25ba47acf9b4 to your computer and use it in GitHub Desktop.
my_hoplon_demo.cljs
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
| (ns test1 | |
| (:require | |
| [hoplon.core :as h] | |
| [javelin.core :as j])) | |
| (h/defelem timer [attrs children] | |
| (let [start (or (:start attrs) 0) | |
| seconds (j/cell start)] | |
| (.setInterval js/window #(swap! seconds inc) 1000) | |
| (h/div attrs (j/cell= (str "Seconds Elapsed: " seconds))))) | |
| (.replaceChildren (.getElementById js/document "app") | |
| (timer)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment