30 lines
881 B
TypeScript
30 lines
881 B
TypeScript
import { reduxBatch } from "@manaflair/redux-batch";
|
|
import { createStore, applyMiddleware } from "redux";
|
|
import {
|
|
useSelector as useReduxSelector,
|
|
TypedUseSelectorHook,
|
|
} from "react-redux";
|
|
import appReducer, { AppState } from "./reducers";
|
|
import createSagaMiddleware from "redux-saga";
|
|
import { rootSaga } from "sagas";
|
|
import { composeWithDevTools } from "redux-devtools-extension/logOnlyInProduction";
|
|
import * as Sentry from "@sentry/react";
|
|
|
|
const sagaMiddleware = createSagaMiddleware();
|
|
const sentryReduxEnhancer = Sentry.createReduxEnhancer({
|
|
// Optionally pass options listed below
|
|
});
|
|
|
|
export default createStore(
|
|
appReducer,
|
|
composeWithDevTools(
|
|
reduxBatch,
|
|
applyMiddleware(sagaMiddleware),
|
|
reduxBatch,
|
|
sentryReduxEnhancer,
|
|
),
|
|
);
|
|
sagaMiddleware.run(rootSaga);
|
|
|
|
export const useSelector: TypedUseSelectorHook<AppState> = useReduxSelector;
|