@replyke/core
Version:
Replyke: Build interactive apps with social features like comments, votes, feeds, user lists, notifications, and more.
10 lines • 435 B
JavaScript
import { combineReducers } from "@reduxjs/toolkit";
import { replykeReducers } from "./replykeReducers";
import { baseApi } from "./api/baseApi";
// Root reducer with namespace (used by standalone mode)
// State shape: { replyke: {...}, replykeApi: {...} }
export const rootReducer = combineReducers({
replyke: replykeReducers,
[baseApi.reducerPath]: baseApi.reducer, // 'replykeApi'
});
//# sourceMappingURL=rootReducer.js.map