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

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