-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Plans (grid): Reflect storage add-on selection on intro offer price a…
…nd billing desc (#95428) * Fixes price display on import upgrade screen --------- Co-authored-by: Aneesh Devasthale <[email protected]>
- Loading branch information
1 parent
a81de44
commit 18e9da9
Showing
11 changed files
with
364 additions
and
145 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
import { PRODUCT_1GB_SPACE } from '@automattic/calypso-products'; | ||
import { ADD_ON_50GB_STORAGE } from './constants'; | ||
import spaceUpgradeIcon from './icons/space-upgrade'; | ||
import type { AddOnMeta } from './types'; | ||
|
||
const STORAGE_ADD_ONS_MOCK: AddOnMeta[] = [ | ||
{ | ||
addOnSlug: ADD_ON_50GB_STORAGE, | ||
productSlug: PRODUCT_1GB_SPACE, | ||
featureSlugs: null, | ||
icon: spaceUpgradeIcon, | ||
quantity: 50, | ||
name: '50 GB Storage', | ||
displayCost: '50', | ||
prices: { | ||
monthlyPrice: 10, | ||
yearlyPrice: 120, | ||
formattedMonthlyPrice: 'USD10', | ||
formattedYearlyPrice: 'USD120', | ||
}, | ||
description: 'Make more space for high-quality photos, videos, and other media. ', | ||
featured: false, | ||
purchased: false, | ||
checkoutLink: 'checkout:storage-50gb', | ||
}, | ||
]; | ||
|
||
export { STORAGE_ADD_ONS_MOCK }; |
Oops, something went wrong.