teachers.js
1.33 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
export default () => {
const teachers = [{
"name": "Test Teacher",
"email": "shubhamchugh1992@gmail.com",
"dob": "01-05-1994",
"city": "Chandigarh",
"country": "India",
"presentAddress": "SCO 34 second floor",
"countryCode": "+91",
"mobileNo": "08558875847",
"state": "Chandigarh",
"pincode": "160071",
"joinDate": "18-11-2019"
},
{
"name": "Kuldeep Kumar",
"email": "kuldeep.kumar@viithiisys.com",
"dob": "10-01-1995",
"city": "Mohali",
"country": "India",
"presentAddress": "sector 71 Mohali",
"countryCode": "+91",
"mobileNo": "7009191451",
"state": "Punjab",
"pincode": "160072",
"joinDate": "23-04-2018"
},
{
"name": "Sunny Negi",
"email": "sunny.negi@viithiisys.com",
"dob": "14-01-1995",
"city": "Phanckula",
"country": "India",
"presentAddress": "sector 71 Mohali",
"countryCode": "+91",
"mobileNo": "8989981451",
"state": "haryana",
"pincode": "160073",
"joinDate": "24-04-2018"
}
]
return teachers;
}