Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save lcmen/67c0ef4002a4712c245a580167419014 to your computer and use it in GitHub Desktop.
Save lcmen/67c0ef4002a4712c245a580167419014 to your computer and use it in GitHub Desktop.
<nav className='navbar'>
{
userRole === 'admin' && (
<AdminPanel />
) || userRole === 'user' && (
<UserPanel />
) || (
<StatusPanel />
)
}
</nav>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment