-
Notifications
You must be signed in to change notification settings - Fork 382
/
data.js
57 lines (54 loc) · 1.18 KB
/
data.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
// database of pets, pets breed, pet age, owners name , telephone numbers, and appointments
const pets = [
{
id: 1,
name: 'Fido',
breed: 'Labrador',
age: 3,
owner: 'John',
telephone: '555-555-5555',
appointments: [
{
date: '01/01/2020',
time: '10:00',
reason: 'checkup'
},
]
},
{
id: 2,
name: 'Spot',
breed: 'Poodle',
age: 2,
owner: 'Jane',
telephone: '555-555-5555',
appointments: [
{
date: '01/01/2020',
time: '10:00',
reason: 'checkup'
},
]
},
{
id: 3,
name: 'Rover',
breed: 'Pitbull',
age: 1,
owner: 'John',
telephone: '555-555-5555',
appointments: [
{
date: '01/01/2020',
time: '10:00',
reason: 'checkup'
},
{
date: '01/01/2020',
time: '10:00',
reason: 'checkup'
}
]
}
];
module.exports = pets;