I am building a page in react. I am zooming on the page from 100% to several levels.
How can I set the zooming to 100% when the page is reloading by refreshing?
Should I go through window.innerWidth on componentWillMount?
I am trying few things but I could not manage to get it work.
componentWillMount () {
if (window.innerWidth !== window.outerWidth){
window.resizeTo(window.outerWidth, window.outerHeight)
}
}