Last active
December 28, 2020 08:38
-
-
Save samteb/341c62ce59107aee65d0d722e5edf98e 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
this.listTitle$ = this.listLevel$.pipe( | |
map(listLevel => { | |
switch (listLevel) { | |
case ListLevel.AUTHORS: | |
return 'Trending authors that published few minutes ago!'; | |
case ListLevel.ARTICLES: | |
return 'Best articles for you!'; | |
default: | |
break; | |
} | |
}) | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment