Skip to content

Instantly share code, notes, and snippets.

@warodri-sendbird
Created September 2, 2021 15:12
Show Gist options
  • Save warodri-sendbird/f6170ebfc9a36c9f9f860a8d9f8e879d to your computer and use it in GitHub Desktop.
Save warodri-sendbird/f6170ebfc9a36c9f9f860a8d9f8e879d to your computer and use it in GitHub Desktop.
return (
<>
{initialized ? (
currentUser ? (
<Channels {...props} currentUser={currentUser} />
) : (
<Login {...props} onLogin={login} />
)
) : (
<View />
)}
</>
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment