Blame view

src/script/students.js 908 Bytes
1c69557ac   Neeraj Sharma   implement design ...
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
  export default () => {
  
      const students = [{
              "name": "Rishav Singla",
              "email": "rsingla.rishu@gmail.com",
              "rollNo": "1",
              "dob": "1993-10-08",
              "gender": "Male",
              "bloodGroup": "A+",
              "mobile": "9914092452",
              "city": "Chandigarh",
              "country": "India",
              "presentAddress": "Mohali Sector ",
              "state": "Punjab",
          },
          {
              "name": "Shubham Chugh",
              "email": "shubham@theideazfactory.com",
              "rollNo": "2",
              "dob": "1994-05-29",
              "gender": "Male",
              "bloodGroup": "A+",
              "mobile": "8077362128",
              "city": "Chandigarh",
              "country": "India",
              "presentAddress": "#1571, ground floor, sector 7C",
              "state": "Chandigarh",
          },
      ]
      return students;
  }