将样式组件添加到 Codepen
Add styled-components to Codepen
尝试在我的笔中使用 styled-components https://codepen.io/mxshrv/pen/aMXvQd,但出现错误
Cannot use 'in' operator to search for 'default' in undefined
styled is not defined
如何为我的笔正确添加库?
尝试像这里的这支笔那样制作 const styled = window.styled
:
https://codepen.io/beauhaus/pen/OaRwbm
看起来 Styled Components v5 添加了新要求。 You now also need react-is
能够使用 SC。
所以在你的笔中,在外部脚本下,搜索 react-is
并添加它。
我还建议将其上移到 react
和 react-dom
之后以及您的 styled-components
脚本之前。
尝试在我的笔中使用 styled-components https://codepen.io/mxshrv/pen/aMXvQd,但出现错误
Cannot use 'in' operator to search for 'default' in undefined
styled is not defined
如何为我的笔正确添加库?
尝试像这里的这支笔那样制作 const styled = window.styled
:
https://codepen.io/beauhaus/pen/OaRwbm
看起来 Styled Components v5 添加了新要求。 You now also need react-is
能够使用 SC。
所以在你的笔中,在外部脚本下,搜索 react-is
并添加它。
我还建议将其上移到 react
和 react-dom
之后以及您的 styled-components
脚本之前。