Is it possible to loop an identical component in Render function?
Something like this:
... onPress = () => { ... }; initialArr = [[\"blue\",\"t
render() { return ( {initialArr.map((prop, key) => { return ( {prop[1]} ); })} ) }
should do the trick