Same explanation is found here:<https://github.com...
# javascript
a
Same explanation is found here:https://github.com/JetBrains/kotlin-wrappers/issues/321 Hello all, anyone knows how to use
kotlin-styled
for animations?
keyframe animations
per se? When I do
Copy code
animation(duration = 0.5.s) {
  0 {
    top = 50.vh
  }  

  00 {
    top = 0.vh  
  }
}
I get this in the console
Copy code
react-dom.development.js:22665 Uncaught Error: It seems you are interpolating a keyframe declaration (lbMCNJ) into an untagged string. This was supported in styled-components v3, but is not longer supported in v4 as keyframes are now injected on-demand. Please wrap your string in the css\`\` helper which ensures the styles are injected correctly
t
5.1.0
doesn’t supported by wrappers now
My recomendation - update wrappers (use last stable) Supported version will be in transitive dependencies (
4.4.1
). Custom NPM dependency not required
a
Thank you soo much. Transitive dependencies would sure solve my problems