1
1
export interface IDataList {
2
- nameProduct : string ;
2
+ productName : string ;
3
3
author : string ;
4
4
pictureProduct : string ;
5
5
category : string ;
@@ -9,77 +9,77 @@ export interface IDataList {
9
9
10
10
export const LIST_DATA : IDataList [ ] = [
11
11
{
12
- nameProduct : `Beneath a Scarlet Sky: A Novel` ,
12
+ productName : `Beneath a Scarlet Sky: A Novel` ,
13
13
author : 'Mark Sullivan' ,
14
14
pictureProduct : './assets/img/reactive-list-labels/beneath _scarlet.jpg' ,
15
15
category : 'Literature & Fiction' ,
16
16
price : 5.99
17
17
} ,
18
18
{
19
- nameProduct : `The Orphan's Tale: A Novel` ,
19
+ productName : `The Orphan's Tale: A Novel` ,
20
20
author : 'Pam Jenoff' ,
21
21
pictureProduct : './assets/img/reactive-list-labels/the_orphan_tale.jpg' ,
22
22
category : 'Literature & Fiction' ,
23
23
price : 10.37
24
24
} ,
25
25
{
26
- nameProduct : 'All the Light We Cannot See: A Novel' ,
26
+ productName : 'All the Light We Cannot See: A Novel' ,
27
27
author : 'Anthony Doerr' ,
28
28
pictureProduct : './assets/img/reactive-list-labels/all_light_we_cannot_see.jpeg' ,
29
29
category : 'Literature & Fiction' ,
30
30
price : 12.99
31
31
} ,
32
32
{
33
- nameProduct : 'Rules of Civility: A Novel' ,
33
+ productName : 'Rules of Civility: A Novel' ,
34
34
author : 'Rules of Civility: A Novel' ,
35
35
pictureProduct : './assets/img/reactive-list-labels/rules_civility.jpg' ,
36
36
category : 'Literature & Fiction' ,
37
37
price : 11.79
38
38
} ,
39
39
{
40
- nameProduct : 'The Glass Castle: A Memoir' ,
40
+ productName : 'The Glass Castle: A Memoir' ,
41
41
author : 'Jeannette Walls' ,
42
42
pictureProduct : './assets/img/reactive-list-labels/the_glass_castle.jpg' ,
43
43
category : 'Biographies & Memoirs' ,
44
44
price : 5.14
45
45
} ,
46
46
{
47
- nameProduct : 'Born a Crime: Stories from a South African Childhood' ,
47
+ productName : 'Born a Crime: Stories from a South African Childhood' ,
48
48
author : 'Trevor Noah' ,
49
49
pictureProduct : './assets/img/reactive-list-labels/born_a_crime.jpg' ,
50
50
category : 'Biographies & Memoirs' ,
51
51
price : 6.0
52
52
} ,
53
53
{
54
- nameProduct : 'Al Franken, Giant of the Senate' ,
54
+ productName : 'Al Franken, Giant of the Senate' ,
55
55
author : 'Al Franken' ,
56
56
pictureProduct : './assets/img/reactive-list-labels/giant_of_the_senate.jpg' ,
57
57
category : 'Biographies & Memoirs' ,
58
58
price : 6.39
59
59
} ,
60
60
{
61
- nameProduct : 'Pandemic (The Extinction Files Book 1)' ,
61
+ productName : 'Pandemic (The Extinction Files Book 1)' ,
62
62
author : 'A.G. Riddle' ,
63
63
pictureProduct : './assets/img/reactive-list-labels/pandemic.jpg' ,
64
64
category : 'Biographies & Memoirs' ,
65
65
price : 5.47
66
66
} ,
67
67
{
68
- nameProduct : 'Origin: A Novel' ,
68
+ productName : 'Origin: A Novel' ,
69
69
author : 'Dan Brown' ,
70
70
pictureProduct : './assets/img/reactive-list-labels/origin.jpg' ,
71
71
category : 'Suspense' ,
72
72
price : 10.99
73
73
} ,
74
74
{
75
- nameProduct : 'The Rooster Bar' ,
75
+ productName : 'The Rooster Bar' ,
76
76
author : 'John Grisham' ,
77
77
pictureProduct : './assets/img/reactive-list-labels/the_rooster_bar.jpg' ,
78
78
category : 'Suspense' ,
79
79
price : 10.99
80
80
} ,
81
81
{
82
- nameProduct : 'The Life We Bury' ,
82
+ productName : 'The Life We Bury' ,
83
83
author : 'Dan Brown' ,
84
84
pictureProduct : './assets/img/reactive-list-labels/the_life_we_bury.jpg' ,
85
85
category : 'Suspense' ,
0 commit comments