Check out example codes for "render html in node js". It will help you in understanding the concepts better.
Code Example 1
render html in node js
-----------------------------
//server.js & index.html keep in same dir
app.use(express.static('./'));
app.get('/', function(req, res) {
res.render('index.html');
});
Learn ReactJs, React Native from akashmittal.com