Skip to content

Instantly share code, notes, and snippets.

@Mohammad-Faisal
Last active April 22, 2022 03:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save Mohammad-Faisal/6c4c1978f49184c503f111b316656f3d to your computer and use it in GitHub Desktop.
Save Mohammad-Faisal/6c4c1978f49184c503f111b316656f3d to your computer and use it in GitHub Desktop.
const {role} = user
switch(role){
case ADMIN:
return <AdminUser />
case EMPLOYEE:
return <EmployeeUser />
case USER:
return <NormalUser />
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment