Say you have a React client with a nodejs express backend. On the server you have a route set up such that app.get('/') serves a Home.html. On the React side you have react-router-dom set up like
<Route path='/' component= { NotHome } />
What file will be served/shown to the user, Home or NotHome?