Created
June 25, 2024 04:34
-
-
Save hrishikeshs/047429326db68a436a57c5c24d821660 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
const getUpgradePromoBanner = (user: User) => { | |
if (isPremiumUser(user)) { | |
return 'PREMIUM_TO_PRO'; | |
} | |
if (isFree(user)) { | |
return 'FREE_TO_PREMIUM'; | |
} | |
... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment