-
Notifications
You must be signed in to change notification settings - Fork 31
/
data.js
80 lines (80 loc) · 1.82 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
module.exports = {
users: [
{
id: 1,
name: 'Travis Rollins',
status: 'online',
interests: 'Music, Software, & Gaming'
},
{
id: 2,
name: 'Leta Keane',
status: 'online',
interests: 'Science, Music, & Classic Films'
},
{
id: 3,
name: 'Louisa Barrett',
status: 'offline',
interests: 'Giphs, DJ Khaled, & Unicorns'
},
{
id: 4,
name: 'Robbie Jaeger',
status: "online",
interests: 'Plants & Woodwork'
}
],
sportTeams: [
{
id: 1,
name: 'Dallas Cowboys',
head_coach: 'Jason Garrett',
sport: 'football'
},
{
id: 2,
name: 'New York Yankees',
head_coach: 'Aaron Boone',
sport: 'baseball'
},
{
id: 3,
name: 'Los Angeles Lakers',
head_coach: 'Frank Vogel',
sport: 'basketball'
},
{
id: 4,
name: 'Philadelphia Flyers',
head_coach: 'Alain Vigneault',
sport: 'hockey'
}
],
animals: [
{
id: 1,
name: 'otters',
diet: 'urchins, snails, fish & crabs',
fun_fact: 'They have the thickest fur of any mammal in the animal kingdom.'
},
{
id: 2,
name: 'grizzly bears',
diet: 'seeds, berries, roots, grasses, fungi, deer, elk, fish & insects',
fun_fact: 'The grizzly bear is the official animal of the state of Montana since 1982.'
},
{
id: 3,
name: 'orcas',
diet: 'birds, squid, octopuses, sea turtles, sharks, rays & fish',
fun_fact: 'Orcas, also known as killer whales, are known to prey on other marine mammals, including dolphins and seals.'
},
{
id: 4,
name: 'tigers',
diet: 'chital, sambar, gaur & wild board',
fun_fact: 'The main food of tigers are buffalos, antelopes, and rodents.'
}
]
}