-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfakedb.js
55 lines (54 loc) · 1.17 KB
/
fakedb.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
export const users = [
{
_id: "01GYZ8GB56S6ER5QDE6SD784MA",
first_name: "Ewan",
last_name: "Blondin",
email: "[email protected]",
password: "ChRspQAOea",
},
{
_id: "01GYZ8GB575VTT5JMQ2WBN19DA",
first_name: "Jo-anne",
last_name: "Manifould",
email: "[email protected]",
password: "tbnfXRZDK",
},
{
_id: "01GYZ8GB57DKER2A50F8RK4AM0",
first_name: "Raeann",
last_name: "Greenrde",
email: "[email protected]",
password: "Xt81Qy0",
},
{
_id: "01GYZ8GB5855971PKZPWE346TG",
first_name: "Florenza",
last_name: "Lawrinson",
email: "[email protected]",
password: "uOvCb93KR",
},
{
_id: "01GYZ8GB58KK1V23859C4D3MJV",
first_name: "Rodney",
last_name: "Schwaiger",
email: "[email protected]",
password: "eUiNqFSi",
},
{
_id: "01GYZ8GB59KV38WASYZ8FXG7ZP",
first_name: "Kizzee",
last_name: "Fisby",
email: "[email protected]",
password: "BSSY2bV7A",
},
];
export const quotes = [
{
name: "Hello world",
by: "01GYZ8GB56S6ER5QDE6SD784MA",
},
{
name: "Wise for wisedom",
by: "01GYZ8GB575VTT5JMQ2WBN19DA",
},
];