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