-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfakedb.js
More file actions
31 lines (30 loc) · 808 Bytes
/
fakedb.js
File metadata and controls
31 lines (30 loc) · 808 Bytes
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
export const users = [
{
id: "1",
firstName: "Naziya",
lastName: "Sait",
email: "naziya@gmail.com",
password: "8888"
},
{
id: "2",
firstName: "Nazriya",
lastName: "S",
email: "nazriya@gmail.com",
password: "8080"
},
]
export const quotes = [
{
name: "Meeting has been cancelled, is the corporate version of 'Maths Teacher is absent today'",
by: "1"
},
{
name: "TTTTTTTTttMeeting has been cancelled, is the corporate version of 'Maths Teacher is absent today'",
by: "1"
},
{
name: "Most Tragic moment, we have a demo in 10 minutes. Is the corporate version of 'Surprise Test in the First Period'",
by: "2"
}
]