Blame view
src/script/users.js
745 Bytes
1c69557ac
|
1 2 3 4 5 6 7 |
export default () => { const users = [{ "name": "Neeraj", "email": "neeraj.sharma@viithiisys.com", "dob": "1995-01-14", "gender": "Male", |
748acd1a6
|
8 |
"role": "LIBRARIAN", |
1c69557ac
|
9 10 11 12 13 14 15 16 17 18 |
"religion": "Hindu", "address": "Mohali", "phone": "1234567890", "joiningDate": "2016-08-17", }, { "name": "Rishav", "email": "rishav.singla@viithiisys.com", "dob": "1995-01-14", "gender": "Male", |
748acd1a6
|
19 |
"role": "ACCOUNTANT", |
1c69557ac
|
20 21 22 23 24 25 26 27 28 |
"religion": "Hindu", "address": "Punjab", "phone": "9878768790", "joiningDate": "2016-08-17", } ] return users; } |