
yarn add styled-components
yarn add -D @types/styled-components @types/styled-components-react-native
import styled from 'styled-components/native';
export default function App () {
return (
<Container>
...
</Container>
)
}
const Container = styled.View`
flex: 1;
background: #efefef;
color: #232323;
`
둘 다 설치한다.
yarn add -D @types/styled-components @types/styled-components-react-native