Commit b5fb2daea3202b1fe9e57c7273074153d43cfc50

Authored by Amber Dev
1 parent d0ffa80feb
Exists in master and in 1 other branch ui-design

countrycode bug

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
src/script/teachers.js
1 export default () => { 1 export default () => {
2 2
3 const teachers = [{ 3 const teachers = [{
4 "name": "Test Teacher", 4 "name": "Test Teacher",
5 "email": "shubhamchugh1992@gmail.com", 5 "email": "shubhamchugh1992@gmail.com",
6 "dob": "01-05-1994", 6 "dob": "01-05-1994",
7 "city": "Chandigarh", 7 "city": "Chandigarh",
8 "country": "India", 8 "country": "India",
9 "presentAddress": "SCO 34 second floor", 9 "presentAddress": "SCO 34 second floor",
10 "countryCode": "IN", 10 "countryCode": "+91",
11 "mobileNo": "08558875847", 11 "mobileNo": "08558875847",
12 "state": "Chandigarh", 12 "state": "Chandigarh",
13 "pincode": "160071", 13 "pincode": "160071",
14 "joinDate": "18-11-2019" 14 "joinDate": "18-11-2019"
15 }, 15 },
16 { 16 {
17 "name": "Kuldeep Kumar", 17 "name": "Kuldeep Kumar",
18 "email": "kuldeep.kumar@viithiisys.com", 18 "email": "kuldeep.kumar@viithiisys.com",
19 "dob": "10-01-1995", 19 "dob": "10-01-1995",
20 "city": "Mohali", 20 "city": "Mohali",
21 "country": "India", 21 "country": "India",
22 "presentAddress": "sector 71 Mohali", 22 "presentAddress": "sector 71 Mohali",
23 "countryCode": "+91", 23 "countryCode": "+91",
24 "mobileNo": "7009191451", 24 "mobileNo": "7009191451",
25 "state": "Punjab", 25 "state": "Punjab",
26 "pincode": "160072", 26 "pincode": "160072",
27 "joinDate": "23-04-2018" 27 "joinDate": "23-04-2018"
28 }, 28 },
29 { 29 {
30 "name": "Sunny Negi", 30 "name": "Sunny Negi",
31 "email": "sunny.negi@viithiisys.com", 31 "email": "sunny.negi@viithiisys.com",
32 "dob": "14-01-1995", 32 "dob": "14-01-1995",
33 "city": "Phanckula", 33 "city": "Phanckula",
34 "country": "India", 34 "country": "India",
35 "presentAddress": "sector 71 Mohali", 35 "presentAddress": "sector 71 Mohali",
36 "countryCode": "+91", 36 "countryCode": "+91",
37 "mobileNo": "8989981451", 37 "mobileNo": "8989981451",
38 "state": "haryana", 38 "state": "haryana",
39 "pincode": "160073", 39 "pincode": "160073",
40 "joinDate": "24-04-2018" 40 "joinDate": "24-04-2018"
41 } 41 }
42 ] 42 ]
43 return teachers; 43 return teachers;
44 } 44 }