【发布时间】:2021-12-22 16:57:55
【问题描述】:
我正在使用 styled-components 库,并且正在尝试设置组件的样式,但我不知道类型。我尝试了很多,但我一直收到错误Error: Cannot create styled-component for component。提前感谢您的帮助!
export const StyledSupply = styled.text `
textAlign: "center",
fontSize: 30,
fontWeight: "bold",
color: "var(--accent-text)"
`;
<s.TextTitle style={StyledSupply}>
{data.totalSupply} / {CONFIG.MAX_SUPPLY}
</s.TextTitle>
【问题讨论】:
标签: javascript reactjs styled-components