The state in Redux is stored in memory, in the Redux store . This means that, if you refresh the page, that state gets wiped out. The state in redux is just a variable that persists in memory because it is referenced (via closure) by all redux functions.
Read more