[69507b]: / app / frontend / src / reducers / index.js

Download this file

8 lines (7 with data), 213 Bytes

1
2
3
4
5
6
7
8
import {combineReducers} from 'redux';
import ImageReducers from './ImageReducers';
import UserReducer from './UserReducer';
export default combineReducers({
Image: ImageReducers,
user: UserReducer
})