- Initial commit
This commit is contained in:
19
app/reducers/index.js
Normal file
19
app/reducers/index.js
Normal file
@@ -0,0 +1,19 @@
|
||||
import { combineReducers } from 'redux';
|
||||
|
||||
import { events } from './events.js';
|
||||
import { items } from './items.js';
|
||||
|
||||
const initialState = {
|
||||
auction: {},
|
||||
cart: [],
|
||||
isFetching: false,
|
||||
items: [],
|
||||
profile: {},
|
||||
};
|
||||
|
||||
const rootReducer = combineReducers({
|
||||
events,
|
||||
items,
|
||||
});
|
||||
|
||||
export default rootReducer;
|
||||
Reference in New Issue
Block a user