Blame view

src/script/students.js 2.1 KB
1c69557ac   Neeraj Sharma   implement design ...
1
  export default () => {
1c69557ac   Neeraj Sharma   implement design ...
2
3
4
      const students = [{
              "name": "Rishav Singla",
              "email": "rsingla.rishu@gmail.com",
f9b486fe1   Neeraj Sharma   implemrent all task
5
6
              "className": "1",
              "sectionName": "A",
1c69557ac   Neeraj Sharma   implement design ...
7
8
9
10
11
              "rollNo": "1",
              "dob": "1993-10-08",
              "gender": "Male",
              "bloodGroup": "A+",
              "mobile": "9914092452",
f9b486fe1   Neeraj Sharma   implemrent all task
12
13
              "height": "5'11",
              "medicalNotes": "No",
1c69557ac   Neeraj Sharma   implement design ...
14
15
16
17
              "city": "Chandigarh",
              "country": "India",
              "presentAddress": "Mohali Sector ",
              "state": "Punjab",
f9b486fe1   Neeraj Sharma   implemrent all task
18
19
20
21
22
23
24
25
26
27
28
29
30
              "allergies": "No",
              "establishmentYear": "2019",
              "fatherCellNo": "09988772222",
              "fatherName": "Raj",
              "parentEmail": "rajkumar123@gmail.com",
              "motherCellNo": "8877112266",
              "motherName": "Simran",
              "permanentAddress": "Mohali",
              "pincode": "160062",
              "presentAddress": "Mohali Sector ",
              "role": 4,
              "rollNo": "1",
              "weight": "72"
1c69557ac   Neeraj Sharma   implement design ...
31
32
33
34
          },
          {
              "name": "Shubham Chugh",
              "email": "shubham@theideazfactory.com",
f9b486fe1   Neeraj Sharma   implemrent all task
35
36
              "className": "10",
              "sectionName": "A",
1c69557ac   Neeraj Sharma   implement design ...
37
38
39
40
41
              "rollNo": "2",
              "dob": "1994-05-29",
              "gender": "Male",
              "bloodGroup": "A+",
              "mobile": "8077362128",
f9b486fe1   Neeraj Sharma   implemrent all task
42
43
44
              "height": "5'8",
              "medicalNotes": "No",
              "motherCellNo": "7878654323",
1c69557ac   Neeraj Sharma   implement design ...
45
46
47
48
              "city": "Chandigarh",
              "country": "India",
              "presentAddress": "#1571, ground floor, sector 7C",
              "state": "Chandigarh",
f9b486fe1   Neeraj Sharma   implemrent all task
49
50
51
52
53
54
55
56
57
58
59
60
              "allergies": "No",
              "establishmentYear": "2019",
              "parentEmail": "SureshKumar321@gmail.com",
              "fatherCellNo": "09898787865",
              "fatherName": "Suresh Kumar",
              "motherName": "Shinki",
              "permanentAddress": "Sector 43 Chandigarh",
              "pincode": " 160036",
              "presentAddress": "Sector 43 Chandigarh",
              "role": 4,
              "rollNo": "2",
              "weight": "70"
1c69557ac   Neeraj Sharma   implement design ...
61
62
63
64
          },
      ]
      return students;
  }