-
Notifications
You must be signed in to change notification settings - Fork 0
/
constants.js
56 lines (55 loc) · 1007 Bytes
/
constants.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
export const config = {
"username":"[email protected]",
"password" :"hruday123"
}
export const employees = {
user:[{
"id":1,
"name":"test1",
"age" : "11",
"gender":"male",
"email" : "[email protected]",
"phoneNo" : "9415346313"
},
{
"id" : 2,
"name":"test2",
"age" : "12",
"gender":"male",
"email" : "[email protected]",
"phoneNo" : "9415346314"
},
{
"id":3,
"name":"test3",
"age" : "13",
"gender":"male",
"email" : "[email protected]",
"phoneNo" : "9415346315"
},
{
"id":4,
"name":"test4",
"age" : "14",
"gender":"male",
"email" : "[email protected]",
"phoneNo" : "9415346316"
},
{
"id":5,
"name":"test5",
"age" : "15",
"gender":"male",
"email" : "[email protected]",
"phoneNo" : "9415346317"
},
{
"id":6,
"name":"test6",
"age" : "16",
"gender":"male",
"email" : "[email protected]",
"phoneNo" : "9415346318"
}
]
}