students.js
2.22 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
export default () => {
const students = [{
"name": "Rishav Singla",
"email": "rsingla.rishu@gmail.com",
"className": "1",
"sectionName": "A",
"rollNo": "1",
"dob": "08-10-1993",
"gender": "Male",
"bloodGroup": "A+",
"mobile": "9914092452",
"height": "5'11",
"medicalNotes": "No",
"city": "Chandigarh",
"country": "India",
"presentAddress": "Mohali Sector ",
"state": "Punjab",
"allergies": "No",
"establishmentYear": "2019",
"fatherCellNo": "09988772222",
"countryCode": "+91",
"fatherName": "Raj",
"parentEmail": "rajkumar123@gmail.com",
"motherCellNo": "8877112266",
"motherName": "Simran",
"permanentAddress": "Mohali",
"pincode": "160062",
"presentAddress": "Mohali Sector ",
"role": 4,
"rollNo": "1",
"weight": "72",
"password": ""
},
{
"name": "Shubham Chugh",
"email": "shubham@theideazfactory.com",
"className": "10",
"sectionName": "A",
"rollNo": "2",
"dob": "29-05-1994",
"gender": "Male",
"bloodGroup": "A+",
"mobile": "8077362128",
"height": "5'8",
"medicalNotes": "No",
"motherCellNo": "7878654323",
"city": "Chandigarh",
"country": "India",
"presentAddress": "#1571, ground floor, sector 7C",
"state": "Chandigarh",
"allergies": "No",
"establishmentYear": "2019",
"parentEmail": "SureshKumar321@gmail.com",
"fatherCellNo": "09898787865",
"countryCode": "+91",
"fatherName": "Suresh Kumar",
"motherName": "Shinki",
"permanentAddress": "Sector 43 Chandigarh",
"pincode": " 160036",
"presentAddress": "Sector 43 Chandigarh",
"role": 4,
"rollNo": "2",
"weight": "70",
"password": ""
},
]
return students;
}