I’m struggling to get rum to render a react-spring
animated.div
— does anyone have a snippet to share of what worked for them? Tried these two and probably some other variations:
(rs/animated.div {:style props :key idx} (Particle)))
(rum/adapt-class rs/animated.div {:style props :key idx} (Particle))
GitHub code search is not bringing up a lot of usages 😄
So actually this seems to work somewhat
(js/React.createElement rs/animated.div #js {:style props #_#_:key idx} (Particle))
Problem I’m still having: it doesn’t animate at all haha :thinking_face:
I figured it out! I had to interpolate the string value and didn’t do that!