1import { combineReducers } from 'redux';
2
3const INITIAL_STATE = {
4 current: [],
5 possible: [
6 'Alice',
7 'Bob',
8 'Sammy',
9 ],
10};
11
12const friendsReducer = (state = INITIAL_STATE, action) => {
13 switch (action.type) {
14 default:
15 return state
16 }
17};
18
19export default combineReducers({
20 friends: friendsReducer
21});