I have a bunch of components that looks like this:
<View><Component containerStyle={{ color: 'blue' }} id={"test1"} onPress={onPress1}/><Component containerStyle={{ color: 'blue' }} id={"test2"} onPress={onPress2}/><Component containerStyle={{ color: 'blue' }} id={"test3"} onPress={onPress3}/> ...</View>
How can I create this cleanly in code without manually making a long list of these components?