Я использую React Native Debugger и хочу интегрировать в него Redux Devtools.Из этой статьи (https://github.com/jhen0409/react-native-debugger), я выбрал «Redux Devtools Integration», а оттуда выбрал «4. Для других браузеров и не браузерной среды», что привело меня сюда: https://github.com/zalmoxisus/remote-redux-devtools.
IУ меня есть следующий код в моем магазине, но я не могу понять, как заставить Redux Devtools появляться в моем React Native Debugger.
import { createStore, applyMiddleware, AnyAction } from "redux";
import createSagaMiddleware from "redux-saga";
import { composeWithDevTools } from 'remote-redux-devtools';
import rootReducer from "./reducers";
import rootSaga from "./sagas";
const sagaMiddleware = createSagaMiddleware();
export type AppState = ReturnType<typeof rootReducer>;
const store = createStore<AppState, AnyAction, {}, {}>(
rootReducer,
composeWithDevTools(applyMiddleware(sagaMiddleware))
);
sagaMiddleware.run(rootSaga);
export default store;
Любые советы?
Спасибо!