Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save adrianolsk/c0136f483e7c7ac150fc310b01ccb7b8 to your computer and use it in GitHub Desktop.
Save adrianolsk/c0136f483e7c7ac150fc310b01ccb7b8 to your computer and use it in GitHub Desktop.
React conditional component rendering
<nav className='navbar'>
{
userRole === 'admin' && (
<AdminPanel />
) || userRole === 'user' && (
<UserPanel />
) || (
<StatusPanel />
)
}
</nav>
more options on https://www.robinwieruch.de/conditional-rendering-react/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment