Blame view
src/script/parents.js
520 Bytes
1c69557ac
|
1 2 3 4 5 |
export default () => { const parents = [{ "email": "digital@theideazfactory.com", "fatherName": "Abhishek", |
1c69557ac
|
6 7 |
"motherName": "Rita", "motherCellNo": "8989786789", |
6fe35f887
|
8 |
"fatherCellNo": "9898981234" |
1c69557ac
|
9 10 11 12 |
}, { "email": "Rampal@viithiisys.com", "fatherName": "suresh", |
1c69557ac
|
13 |
"motherName": "rita kumari", |
6fe35f887
|
14 15 |
"fatherCellNo": "9898987867", "motherCellNo": "9768576536" |
1c69557ac
|
16 17 18 19 20 |
} ] return parents; } |