Per the following code, when is the Hello component assigned to greeting?
const greeting = isLoggedIn ? <Hello /> : null;
when isLoggedIn is true
isLoggedIn
when the Hello function is called
when a user logs in
never