Skip to content

Instantly share code, notes, and snippets.

@hrishikeshs
Created June 25, 2024 04:34
Show Gist options
  • Save hrishikeshs/047429326db68a436a57c5c24d821660 to your computer and use it in GitHub Desktop.
Save hrishikeshs/047429326db68a436a57c5c24d821660 to your computer and use it in GitHub Desktop.
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