Created
October 19, 2020 13:03
-
-
Save eladcandroid/a9c7520fedf0c4fa0f8c6d77664ebc5a to your computer and use it in GitHub Desktop.
Angular Tutorial products.ts
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
export const products = [ | |
{ | |
name: 'Phone XL', | |
price: 799, | |
description: 'A large phone with one of the best screens' | |
}, | |
{ | |
name: 'Phone Mini', | |
price: 699, | |
description: 'A great phone with one of the best cameras' | |
}, | |
{ | |
name: 'Phone Standard', | |
price: 299, | |
description: '' | |
} | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment