vrac

Template-based web library [WIP] - https://github.com/green-coder/vrac Zulip archive: https://clojurians.zulipchat.com/#narrow/stream/180378-slack-archive/topic/vrac Clojureverse archive: https://clojurians-log.clojureverse.org/vrac
2020-09-25T03:58:45.005800Z

I will simplify the syntax for the events. Before:

(defc my-button [button-id text]
  [:button {:on-click (dispatch [:button-clicked button-id])} text])
After:
(defc my-button [button-id text]
  [:button {:on-click [:button-clicked button-id]} text])

2020-09-25T04:18:03.006400Z

Let me know if this sounds too strange or if I forgot something.