【发布时间】:2021-11-12 00:49:01
【问题描述】:
我在 react native 项目中使用 styled-components 时遇到此错误。
TypeError: undefined is not a function (near '..._styledComponents.default.button...')
这是我的代码;
import styled from "styled-components";
const Buttonn = styled.button`
background: white;
width: 200px;
height: 50px;
bordercolor: black;
font-size: 24px;
color: black;
text-align: center;
&:hover {
background: black;
color: white;
}
`;
function CourierDetails() {
return (
<Buttonn>Submit</Buttonn>
)}
【问题讨论】:
标签: react-native styled-components