users.js
813 Bytes
export default () => {
const users = [{
"name": "Neeraj",
"email": "neeraj.sharma@viithiisys.com",
"dob": "14-01-1995",
"gender": "Male",
"role": "LIBRARIAN",
"religion": "Hindu",
"address": "Mohali",
"phone": "1234567890",
"countryCode": "+91",
"joiningDate": "17-08-2016",
},
{
"name": "Rishav",
"email": "rishav.singla@viithiisys.com",
"dob": "12-08-1995",
"gender": "Male",
"role": "ACCOUNTANT",
"religion": "Hindu",
"address": "Punjab",
"phone": "9878768790",
"countryCode": "+91",
"joiningDate": "28-03-2016",
}
]
return users;
}