我尝试为应用中的所有组件创建主题,但我尝试但 /pages/_app.js失败了
theme
但在我的组件const A = styled.a`
color: ${props => {
console.log(props);
return "blue";
}};
`;
中,prop总是一个空对象:
{{1}}
答案 0 :(得分:0)
应该是
const A = styled.a`
color: ${props => props.theme.color};
`;