I have a nested inside a in React Native. Is there a way to tell React Native to style all nested Text Elements that are inside a specific (or all) View Element?
<View style={[container.header,container.super]}><Text>overview</Text></View>
I dont want declare style={text.headerText} or similar to every single Text element that is inside the View Element. Maybe there is something like
.container.header > Text { ... }
like it is in classic .css