react if in template code example
Example 1: adding a if stement in jsx
render() {
return (
<View style={styles.container}>
{this.state.value == 'news'? <Text>data</Text>: null }
</View>
)
}
Example 2: inline if in html component
Condition ? Block_For_True : Block_For_False