My question is related to react-admin repo.
I want to dispatch an action, outside of scope of a component, in order to do that, I\'ve read that I need to get access
You could also simply use custom reducers if the computation is no async
// in src/App.js import React from 'react'; import { Admin } from 'react-admin'; import reducers from './reducers'; const App = () => ( ... ); export default App;