This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2019-06-05
Channels
- # announcements (10)
- # beginners (59)
- # calva (172)
- # cider (13)
- # clj-kondo (1)
- # cljdoc (10)
- # cljs-dev (4)
- # cljsrn (65)
- # clojure (144)
- # clojure-europe (2)
- # clojure-italy (26)
- # clojure-losangeles (1)
- # clojure-nl (14)
- # clojure-spec (26)
- # clojure-uk (91)
- # clojurescript (75)
- # core-async (53)
- # cursive (11)
- # datomic (16)
- # fulcro (42)
- # graalvm (29)
- # graphql (9)
- # kaocha (3)
- # leiningen (22)
- # off-topic (26)
- # qa (1)
- # re-frame (3)
- # reagent (7)
- # reitit (10)
- # rewrite-clj (56)
- # robots (1)
- # shadow-cljs (107)
- # spacemacs (10)
- # specter (5)
- # sql (15)
- # tools-deps (39)
- # vim (11)
How do I do this except without recursively converting the props into javascript data structures? I just want to call a react component at the top level of the form and explicitly handle js interop without any automated conversions
[:> js/ReactBootstrapTypeahead.Typeahead
#js {:options xs}] ; don't eat my datastructure pls
@dustingetz (r/create-element js/ReactBootstrapTypeahead.Typeahead #js {:options xs})
How do I call it
How do I call it without a hiccup wrapper
Just call create-element in place of the hiccup
thankyou!