reactMap.js 279 Bytes
module.exports = router => {
    router.get("/consumer", function (req, res, next) {
        console.log ("Agora vai abrir a página do React Client ...");
        const path = "";
        res.sendFile(path.resolve(__dirname, 'client/public', 'build', 'index1.html'));
    });
};