Skip to content

Instantly share code, notes, and snippets.

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