I imported through shadow-cljs a react component library, called react-bootstrap, which has some react components, like Row, Cols etc.
when I try to use those components in my hiccup like this:
[:> Row (doall (for [d @ds] [:> Col (dataset-item d)]))]
I get error messages like this one:
error when calling lifecycle function dias-web.core/mount-root TypeError: Cannot convert a Symbol value to a string
does someone have any clue about how to solve this problem?
thank you very much, it seems it’s still not solved
But you can write code that works around that issue.
yes the r/adapt-react-class adapter
thanks I tried right now and it works