|
|
|
|
|
by drikerf
674 days ago
|
|
Nice project! I do wonder though if jsx is the best way to represent elements in code? Clojure datastructures makes this so much more enjoyable. Everything is just basic lists and maps which makes it very flexible and powerful. [:ul
[:li "task 1"]
[:li "task 2"]] It's weird that it's not more common for making web apps. |
|
There's also variants like h.ul(h.li("task 1"), h.li("task 2")) using Proxies now too.