Я использую @ rematch / core и @ rematch / loading для моего редукса.
В настоящее время сталкиваюсь с некоторой проблемой. Когда я ставлю загрузочный плагин, продолжайте возвращать меня Reducer "loading" returned undefined during initialization.
import {
init, RematchDispatch, RematchRootState,
} from '@rematch/core';
import { createBrowserHistory } from 'history';
import { connectRouter } from 'connected-react-router';
import loading from '@rematch/loading';
import { models, RootModel } from './models';
const history = createBrowserHistory();
const loadingPlugin = loading({});
const rootReducer = () => ({
router: connectRouter(history),
});
export const store = init({
models,
plugins: [loadingPlugin],
redux: {
reducers: rootReducer(),
},
});
export type Store = typeof store;
export type RootDispatch = RematchDispatch<RootModel>;
export type RootState = RematchRootState<RootModel>;
Любое решение?
Спасибо.