'how to style children elements in react native?

is there a way to select children of the element I am styling in react native?

css example of what I am trying to achieve: div > *



Solution 1:[1]

You can use js in react so you can use

let child=parentElement.children

And then you can loop through child and add what styling you want

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Mohamad Al Zohbie