-
Notifications
You must be signed in to change notification settings - Fork 126
/
Copy pathallBooks.js
71 lines (70 loc) · 2.2 KB
/
allBooks.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/*
* Temporary sample data for books
* Eventually you'll retreive this data from an API
*/
allBooks = [
{
_id: "569d962bdadd431100b37c9b",
title: "Around the World in 80 Days",
author: "Jules Verne",
image: "https://cloud.githubusercontent.com/assets/7833470/10892118/865bee3e-8156-11e5-9634-cd7bcd3d6d4f.jpg",
releaseDate: "January 30, 1873",
__v: 0
},
{
_id: "569d962bdadd431100b37c9c",
title: "The Four Hour Workweek",
author: "Tim Ferriss",
image: "https://cloud.githubusercontent.com/assets/7833470/10892117/865b465a-8156-11e5-834b-9c4172d4b0fe.jpg",
releaseDate: "April 1, 2007",
__v: 0
},
{
_id: "569d962bdadd431100b37c9d",
title: "The Great Gatsby",
author: "F. Scott Fitzgerald",
image: "https://cloud.githubusercontent.com/assets/7833470/10892120/866ce1c6-8156-11e5-9bfd-ef729d98a408.jpg",
releaseDate: "April 10, 1925",
__v: 0
},
{
_id: "569d962bdadd431100b37c9f",
title: "Lean In",
author: "Sheryl Sandberg",
image: "https://cloud.githubusercontent.com/assets/7833470/10892114/865a5b1e-8156-11e5-80d8-79c52dc6d7d5.jpg",
releaseDate: "March 11, 2013",
__v: 0
},
{
_id: "569d962bdadd431100b37ca0",
title: "Les Miserables",
author: "Victor Hugo",
image: "https://cloud.githubusercontent.com/assets/7833470/10892116/865b1914-8156-11e5-967c-c139a8a052a5.jpg",
releaseDate: "Unknown 1862",
__v: 0
},
{
_id: "569d962bdadd431100b37ca1",
title: "Of Mice and Men",
author: "John Steinbeck",
image: "https://cloud.githubusercontent.com/assets/7833470/10892121/866d27bc-8156-11e5-9810-62a875e36c27.jpg",
releaseDate: "Unknown 1937",
__v: 0
},
{
_id: "569d962bdadd431100b37ca2",
title: "Romeo and Juliet",
author: "William Shakespeare",
image: "https://cloud.githubusercontent.com/assets/7833470/10892119/865c5112-8156-11e5-8f07-64ddd98c6e89.jpg",
releaseDate: "Unknown 1597",
__v: 0
},
{
_id: "569d962bdadd431100b37ca3",
title: "To Kill a Mockingbird",
author: "Harper Lee",
image: "https://cloud.githubusercontent.com/assets/7833470/10892115/865acce8-8156-11e5-86eb-48ed23c43259.jpg",
releaseDate: "July 11, 1960",
__v: 0
}
];