Dulce-Work-Schedule/2018.1-Dulce_App

View on GitHub
src/Reducers/store.js

Summary

Maintainability
A
0 mins
Test Coverage
import {createStore, combineReducers} from 'redux';
import currentUser from './currentUser';
import currentProfile from './currentProfile';

const reducers = combineReducers({
  currentUser: currentUser,
  currentProfile: currentProfile
});

const store = createStore(reducers);

export default store;