react-move/Animate 错误:“警告:css 样式属性NaN
的值无效。”background
原始代码是这样的:
enter={{
background: [stripe.background],
}}
解决方案:
我将背景属性的值更改为字符串文字并解决了问题。
enter={{
background: `${stripe.background}`,
}}