Я хочу сделать так, как всегда делал в React со стилизованными компонентами.
import styled from "styled-components";
import {Wrapper as CardComponent} from '../../components/Card/style';
export const Wrapper = styled.div`
${CardComponent}{
...the styles
}
`
Но это не работает с React Native.
import styled from "styled-components/native";
import {Wrapper as CardComponent} from '../../components/Card/style';
export const Wrapper = styled.View`
${CardComponent}{
...the styles
}
`
Есть какой-то способ Цель и установить правила между стилизованными компонентами в реагировать родной?