Redux status updates to non-routed page components in real time?

normal routing page gets redux:

/ / container.js

//react-redux redux-thunk
export default withRouter(connect(mapStateToProps, mapDispatchToProps)(couter));

route.js

const AppRouter = () => (
  <HashRouter>
      <UI/>
      {
        routes.map((page, index) => page.component ?
          <Route key={index} exact path={page.path} component={page.component}/> : "")
      }
  </HashRouter>
);

question:
1. How do shared ui components get updated state? in real time? Real-time access cannot be achieved through store.getState ()!

Note:
each page updates the state of ui through dispatch (loading), dispatch (hideloading), and dispatch (alert).

Mar.10,2021

resolved! I got a little dizzy when I turned around from vue.

MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b2bc4f-4e729.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b2bc4f-4e729.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?