Route paths are case sensitive: Try updating the following line in your code from
<Route path = "/Home" Component={Home} />
to
<Route path = "/home" Component={Home} />
Remaining everything is same.