I noticed when i do console.log("testing") in Test() function, it will keep repeating logs. With this, i'm wondering if it using this method to render Jsx will affect my app performance assuming i have many of them.
Test = ()=>{
if(condition){
return<Text>Coming Soon</Text>
}else{
return null;
}
}
render() {
return (
<View>
{
[1,2,3,4].map(list=>
this.Test()
)
}
</View>
);
}