const props = {
lineHeight: 1.4
};
const Out = styled(OutContainer)`
height: 77px;
`;
Out.defaultProps = props;
错误:
警告:React无法识别DOM元素上的
lineHeight
道具。如果您有意让它作为自定义属性出现在DOM中,请将其拼写为小写lineheight
。如果您不小心从父组件传递了它,请将其从DOM元素中删除。
我是样式组件的新手。我想念什么?
答案 0 :(得分:0)
您尝试过以下解决方案吗?
const props = {
style : {
lineHeight: 1.4
}
}