react condition for value code example
Example 1: if else render react
render() {
const isLoggedIn = this.state.isLoggedIn;
return (
{isLoggedIn ? (
) : (
)}
);
}
Example 2: react native conditional rendering
class Component extends React.Component {
const a = true
render() {
return (
{a == true
? ()
: null
}
)
}
}
This is staying: if a == true, render a button component.
Otherwise render null, in other words nothing.