Added packages for students to be able to purchase
This commit is contained in:
98
src/resources/paypal.ts
Normal file
98
src/resources/paypal.ts
Normal file
@@ -0,0 +1,98 @@
|
||||
export const CURRENCIES: {label: string; currency: string}[] = [
|
||||
{
|
||||
label: "Australian dollar",
|
||||
currency: "AUD",
|
||||
},
|
||||
{
|
||||
label: "Brazilian real 2",
|
||||
currency: "BRL",
|
||||
},
|
||||
{
|
||||
label: "Canadian dollar",
|
||||
currency: "CAD",
|
||||
},
|
||||
{
|
||||
label: "Chinese Renmenbi 3",
|
||||
currency: "CNY",
|
||||
},
|
||||
{
|
||||
label: "Czech koruna",
|
||||
currency: "CZK",
|
||||
},
|
||||
{
|
||||
label: "Danish krone",
|
||||
currency: "DKK",
|
||||
},
|
||||
{
|
||||
label: "Euro",
|
||||
currency: "EUR",
|
||||
},
|
||||
{
|
||||
label: "Hong Kong dollar",
|
||||
currency: "HKD",
|
||||
},
|
||||
{
|
||||
label: "Hungarian forint 1",
|
||||
currency: "HUF",
|
||||
},
|
||||
{
|
||||
label: "Israeli new shekel",
|
||||
currency: "ILS",
|
||||
},
|
||||
{
|
||||
label: "Japanese yen 1",
|
||||
currency: "JPY",
|
||||
},
|
||||
{
|
||||
label: "Malaysian ringgit 3",
|
||||
currency: "MYR",
|
||||
},
|
||||
{
|
||||
label: "Mexican peso",
|
||||
currency: "MXN",
|
||||
},
|
||||
{
|
||||
label: "New Taiwan dollar 1",
|
||||
currency: "TWD",
|
||||
},
|
||||
{
|
||||
label: "New Zealand dollar",
|
||||
currency: "NZD",
|
||||
},
|
||||
{
|
||||
label: "Norwegian krone",
|
||||
currency: "NOK",
|
||||
},
|
||||
{
|
||||
label: "Philippine peso",
|
||||
currency: "PHP",
|
||||
},
|
||||
{
|
||||
label: "Polish złoty",
|
||||
currency: "PLN",
|
||||
},
|
||||
{
|
||||
label: "Pound sterling",
|
||||
currency: "GBP",
|
||||
},
|
||||
{
|
||||
label: "Singapore dollar",
|
||||
currency: "SGD",
|
||||
},
|
||||
{
|
||||
label: "Swedish krona",
|
||||
currency: "SEK",
|
||||
},
|
||||
{
|
||||
label: "Swiss franc",
|
||||
currency: "CHF",
|
||||
},
|
||||
{
|
||||
label: "Thai baht",
|
||||
currency: "THB",
|
||||
},
|
||||
{
|
||||
label: "United States dollar",
|
||||
currency: "USD",
|
||||
},
|
||||
];
|
||||
Reference in New Issue
Block a user