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