【发布时间】:2021-07-02 07:26:56
【问题描述】:
This is what I'm trying to do. It works just fine in JavaScript but not in TS
export const Container = styled.View`
align-items: center;
`;
Container.Title = styled.Text`
font-family: Poppins-Regular;
color: #000000;
font-size: 20px;
`;
Property 'Title' does not exist on type 'StyledComponent<typeof View, DefaultTheme, {}, never>'.
【问题讨论】:
-
你能在 CodeSandbox 中重现这个吗?更容易看到你到目前为止所做的事情并以这种方式提供帮助
标签: typescript react-native styled-components mobile-development react-typescript