Conditional Rendering in React
function LoggedInView(props) {
return <h1>Welcome back!</h1>
}
function NonLoggedInView(props) {
return <h1>Please sign up.</h1>
}
function Dashboard(props) {
const isLoggedIn = props.isLoggedIn
if (isLoggedIn) {
return <LoggedInView />
}
return <NonLoggedInView />
}
ReactDOM.render(
// Try changing to isLoggedIn={true}:
<Dashboard isLoggedIn={false} />,
document.getElementById('root'),
)
- Next: React Fragments
- Previous: EVENT HANDLER IN REACT