Вы можете добавить его в свой App / index.js так же, как и остальные приложения
import { compose } from 'redux';
import injectSaga from 'utils/injectSaga';
import saga from './saga';
function App() {
return (
<div>
<Switch>
<Route exact path="/" component={HomePage} />
</Switch>
<GlobalStyle />
</div>
);
}
const withSaga = injectSaga({ key: 'global', saga });
export default compose(withSaga)(App);