This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2017-12-23
Channels
- # adventofcode (92)
- # beginners (12)
- # boot (3)
- # boot-dev (38)
- # cider (9)
- # clara (26)
- # cljs-dev (26)
- # cljsrn (3)
- # clojars (3)
- # clojure (48)
- # clojure-france (6)
- # clojure-greece (2)
- # clojure-spec (3)
- # clojurescript (7)
- # datomic (3)
- # fulcro (6)
- # hoplon (19)
- # jobs-discuss (1)
- # leiningen (4)
- # lumo (9)
- # off-topic (8)
- # onyx (43)
- # planck (10)
- # powderkeg (4)
- # precept (44)
- # re-frame (4)
- # shadow-cljs (4)
- # sql (13)
- # uncomplicate (1)
- # unrepl (3)
hi all, i wonder if any effort has been made into getting fulcro to work with preact.
or if some decision has been made not to pursue it, why?
@levitanong no effort has been made. You could easily try it if the API really is identical (as they claim) by swapping out react dependencies in your lein file.
you might have to do some backfilling to set the js react symbols that Fulcro expects to find if their API isn’t in the same top-level things…`js/React.createElement`, js/React.Component
, js/React.createFactory
, js/ReactDOM.render
, etc. You can easily grep for these in src/main.
got it, thanks @tony.kay!