students.js
908 Bytes
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;
}