@kristian507 🙌 thank you!
I get failures trying to use cljsjs/react-select
due to cljsjs/react-input-autosize
having this “requires” line
https://github.com/cljsjs/packages/blob/master/react-input-autosize/build.boot#L27
It :requires ["react" "prop-types"]
when the package is being provided as “cljsjs.react”, not “react”
this was changed at some point to include “react”, but older versions of the cljsjs/react
only had a provides of “cljsjs.react”
Going to try to use a higher version of react with reagent I think to see if it will resolve
The workaround for me was to just use a higher version of a v15.x react than the one that was packaged with reagent
0.7.0
I used the same one as cljsjs/react-input-autosize
depends on and I guess it “provides” the “react” namespace as expected
I’d be interested to hear if anyone has found a way to use react-bootstrap
with reagent
0.8x and React 16 yet
(that’s what is preventing me from moving forward at the moment)