Check out example codes for "express send html file". It will help you in understanding the concepts better.
Code Example 1
res.sendFile(path.join(__dirname + '/index.html'));
Code Example 2
app.get('/test', function(req, res) {
res.sendFile('test.html', {root: __dirname })
});
Learn ReactJs, React Native from akashmittal.com