Product-List aus Tutorial übernommen (direkt mit Erweiterungen)
[examples/angular-tutorial] / src / app / products.ts
1 export const products = [
2   {
3     name: 'Phone XXL',
4     price: 799,
5     description: 'A large phone with one of the best screens'
6   },
7   {
8     name: 'Phone Minion',
9     price: 699,
10     description: 'A great phone with one of the best cameras'
11   },
12   {
13     name: 'Pimmel-Phone',
14     price: 299,
15     description: ''
16   }
17 ];