Forked from Maruz/gist:9274096e436f83e59524bdd09b6cc030
Created
March 15, 2018 20:25
-
-
Save lcmen/67c0ef4002a4712c245a580167419014 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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