forked from learn-co-curriculum/react-hooks-practice-stocks
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathdb.json
More file actions
74 lines (74 loc) · 1.22 KB
/
Copy pathdb.json
File metadata and controls
74 lines (74 loc) · 1.22 KB
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
{
"stocks": [
{
"id": 1,
"ticker": "GOOG",
"name": "Google",
"type": "Tech",
"price": 1194.8
},
{
"id": 2,
"ticker": "FB",
"name": "Facebook",
"type": "Tech",
"price": 168.85
},
{
"id": 3,
"ticker": "TWTR",
"name": "Twitter",
"type": "Tech",
"price": 29.41
},
{
"id": 4,
"ticker": "AMZN",
"name": "Amazon",
"type": "Tech",
"price": 2013.04
},
{
"id": 5,
"ticker": "V",
"name": "Visa",
"type": "Finance",
"price": 150.05
},
{
"id": 6,
"ticker": "BAC",
"name": "Bank of America",
"type": "Finance",
"price": 29.95
},
{
"id": 7,
"ticker": "JPM",
"name": "JP Morgan",
"type": "Finance",
"price": 114.45
},
{
"id": 8,
"ticker": "C",
"name": "Citi Bank",
"type": "Finance",
"price": 72.94
},
{
"id": 9,
"ticker": "NKE",
"name": "Nike",
"type": "Sportswear",
"price": 84.56
},
{
"id": 10,
"ticker": "UAA",
"name": "Under Armour",
"type": "Sportswear",
"price": 21.07
}
]
}