Как нацелить и установить стили между стилизованными компонентами в React Native withTypescript - PullRequest
0 голосов
/ 24 февраля 2020

Я хочу сделать так, как всегда делал в 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
}
`

Есть какой-то способ Цель и установить правила между стилизованными компонентами в реагировать родной?

...