This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
Sphere/app/reducers/index.js

12 lines
230 B
JavaScript
Raw Normal View History

2016-04-28 17:34:20 +01:00
import { combineReducers } from 'redux';
import * as storage from 'redux-storage';
import user from './user';
2016-05-05 13:34:10 +01:00
import allProjects from './allProjects';
2016-04-28 17:34:20 +01:00
export default storage.reducer(combineReducers({
2016-05-05 13:34:10 +01:00
user,
allProjects
2016-04-28 17:34:20 +01:00
}));