summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAsko Nõmm <asko@nmm.ee>2025-09-26 15:16:09 +0300
committerAsko Nõmm <asko@nmm.ee>2025-09-26 15:16:09 +0300
commit537a14bd9e9146cd9f963520aea75778a32ebc42 (patch)
tree8d8d73e11d18b09fdd5f989fc8bb3f81b3736429 /src
parent1a99176287d085b6784cb0113f415d0b0dddff6e (diff)
Rename `utils-test` to `templates-test`
Diffstat (limited to 'src')
-rw-r--r--src/dompa/templates.cljc10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/dompa/templates.cljc b/src/dompa/templates.cljc
index 21ce8f9..2f79fd2 100644
--- a/src/dompa/templates.cljc
+++ b/src/dompa/templates.cljc
@@ -35,13 +35,3 @@
(cond-> {:node/name ~name}
attrs?# (assoc :node/attrs attrs#)
(seq children#) (assoc :node/children (->flat children#))))))
-
-(defhtml test-page []
- (let [n 123]
- ($ :<>
- ($ :div
- ($ "hello world" n))
- ($ "hello")
- ($ :div))))
-
-(test-page)