Hi! How do I know which version of react-dom do I need to install? Thank you!
helix currently defaults to 16.13.1, but anything above that should work as well
I am not sure without testing that it would work with anything less than 16.13.1 but my hunch is that it would
ah yeah, React Hooks were added in 16.8 so you'll at least want that
Thanks!
I am getting > The required namespace "helix.core" is not available from shadow-cljs. Do I need to add helix somewhere else than deps.edn, eg. into shadow-cljs.edn?
shadow-cljs by default looks for dependencies inside of the shadow-cljs.edn
file. you can tell shadow-cljs to use deps.edn
to build a classpath instead by using the :deps true
flag in your shadow-cljs.edn
file
thanks a lot!!!