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.