How to create a global variable in react component,so that all the other react component can access that global variable and modify it,and for every new request the global variable data should not be lost.
I have tried
localStorage.setItem('key',value)
this is working fine. But problem is By using localstorage. when do logout and log in, into application the values are still exists.
window