This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2020-10-17
Channels
- # announcements (1)
- # asami (3)
- # babashka (10)
- # beginners (61)
- # calva (60)
- # clojure (47)
- # clojure-nl (3)
- # clojure-uk (10)
- # clojurescript (36)
- # conjure (18)
- # cursive (4)
- # datomic (25)
- # fulcro (21)
- # luminus (1)
- # malli (25)
- # off-topic (26)
- # pathom (2)
- # portal (55)
- # re-frame (1)
- # reagent (7)
- # sci (1)
- # shadow-cljs (25)
- # sim-testing (2)
- # sql (14)
- # vim (6)
- # xtdb (10)
there's some tutorial on how to use a component that has hooks interaction with reagent?
https://github.com/React95/React95/tree/master/packages/clippy I can't make a button for clippy like this
(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 thisand browser is returning me this error here
someone knows how to fix this?