reagent

A minimalistic ClojureScript interface to React.js http://reagent-project.github.io/
2020-10-17T19:38:20.067500Z

there's some tutorial on how to use a component that has hooks interaction with reagent?

2020-10-17T19:38:45.068Z

https://github.com/React95/React95/tree/master/packages/clippy I can't make a button for clippy like this

2020-10-17T19:39:46.068400Z

(defn app []
  [:> clippy/ClippyProvider
   {:agentName (.-LINKS clippy/AGENTS)}
   [:> rnf/Button
    {:style   {:maxWidth "250px"}
     :onClick (fn []
                (.play (clippy/useClippy) "Wave"))}
    "playClippy"]]
  )

(defn init []
  [:<>
   [app]])
I've made this

2020-10-17T19:39:59.068800Z

and browser is returning me this error here

2020-10-17T19:40:14.068900Z

2020-10-17T19:40:30.069500Z

someone knows how to fix this?