teachers.js 1.33 KB
export default () => {

    const teachers = [{
            "name": "Test Teacher",
            "email": "shubhamchugh1992@gmail.com",
            "dob": "01-05-1994",
            "city": "Chandigarh",
            "country": "India",
            "presentAddress": "SCO 34 second floor",
            "countryCode": "IN",
            "mobileNo": "08558875847",
            "state": "Chandigarh",
            "pincode": "160071",
            "joinDate": "18-11-2019"
        },
        {
            "name": "Kuldeep Kumar",
            "email": "kuldeep.kumar@viithiisys.com",
            "dob": "10-01-1995",
            "city": "Mohali",
            "country": "India",
            "presentAddress": "sector 71 Mohali",
            "countryCode": "+91",
            "mobileNo": "7009191451",
            "state": "Punjab",
            "pincode": "160072",
            "joinDate": "23-04-2018"
        },
        {
            "name": "Sunny Negi",
            "email": "sunny.negi@viithiisys.com",
            "dob": "14-01-1995",
            "city": "Phanckula",
            "country": "India",
            "presentAddress": "sector 71 Mohali",
            "countryCode": "+91",
            "mobileNo": "8989981451",
            "state": "haryana",
            "pincode": "160073",
            "joinDate": "24-04-2018"
        }
    ]
    return teachers;
}