Rev 5307 |
Ir a la última revisión |
|
Ultima modificación |
Ver Log
|
Rev |
Autor |
Línea Nro. |
Línea |
1 |
www |
1 |
import { combineReducers } from "redux";
|
|
|
2 |
import chatReducer from "./chat/chat.reducer";
|
|
|
3 |
import feedReducer from "./feed/feed.reducer";
|
|
|
4 |
import notificationReducer from "./notification/notification.reducer";
|
|
|
5 |
import shareModalReducer from "./share-modal/shareModal.reducer";
|
|
|
6 |
|
|
|
7 |
export const rootReducer = combineReducers({
|
|
|
8 |
feed: feedReducer,
|
|
|
9 |
notification: notificationReducer,
|
|
|
10 |
shareModal: shareModalReducer,
|
|
|
11 |
chat: chatReducer,
|
|
|
12 |
});
|