react ternanry statement code example
Example 1: ternary operator react
render () {
return (
{ //Check if message failed
(this.state.message === 'failed')
? Something went wrong
: Everything in the world is fine
}
);
}
Example 2: ternary react
render() {
const isLoggedIn = this.state.isLoggedIn;
return (
The user is {isLoggedIn ? 'currently' : 'not'} logged in.
);
}