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