parents.js 644 Bytes
export default () => {

    const parents = [{
            "email": "digital@theideazfactory.com",
            "fatherName": "Abhishek",
            "motherName": "Rita",
            "motherCellNo": "8989786789",
            "fatherCellNo": "9898981234",
            "countryCode": "+91",
            "password": ""

        },
        {
            "email": "Rampal@viithiisys.com",
            "fatherName": "suresh",
            "motherName": "rita kumari",
            "fatherCellNo": "9898987867",
            "countryCode": "+91",
            "motherCellNo": "9768576536",
            "password": ""
        }
    ]
    return parents;

}