Created
November 27, 2023 20:12
-
-
Save teomanofficial/e3318f34f9a932e473d9b563a100ba9d to your computer and use it in GitHub Desktop.
Angular New Control Flow Switch
This file contains 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
@switch (accessLevel) { | |
@case ('admin') { <admin-dashboard/> } | |
@case ('moderator') { <moderator-dashboard/> } | |
@default { <user-dashboard/> } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment