UNPKG

react-saasify

Version:

React components for Saasify web clients.

12 lines (9 loc) 248 B
export function getUpgradeLink({ auth, deployment }) { const { pricingPlans } = deployment if (auth.isAuthenticated) { if (pricingPlans.length === 2) { return `/checkout?plan=${pricingPlans[1].slug}` } } return '/pricing' }