Extended context

This commit is contained in:
Belen Curcio
2017-03-29 17:21:31 -03:00
parent cfb28c4c2a
commit 635df54a2c
9 changed files with 24 additions and 20 deletions
@@ -1 +1 @@
export const clickButton = () => ({type: 'BUTTON_CLICKED'});
export const clickButton = () => ({type: 'BUTTON_CLICKED'});
@@ -6,7 +6,7 @@ const initialState = Map({
export default function reducer (state = initialState, action) {
switch (action.type) {
default:
return state;
default:
return state;
}
}