else if in return react code example
Example 1: how to use if else inside jsx in react
renderElement(){
if(this.state.value == 'news')
return data ;
return null;
}
render() {
return (
{ this.renderElement() }
)
}
Example 2: inline if in html component
Condition ? Block_For_True : Block_For_False