how to cause a whole page reload react redux

Solutions on MaxInterview for how to cause a whole page reload react redux by the best coders in the world

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
showing results for - "how to cause a whole page reload react redux"
Finn
17 Nov 2016
1window.location.reload();
2	//default = false
3window.location.reload(false);
4	//soft refresh
5window.location.reload(true);
6	//hard refresh
7
8