Finish search from header

This commit is contained in:
Tom Raithel
2017-03-21 20:57:20 +01:00
parent fd029dad9e
commit ad2b0e34ad
7 changed files with 102 additions and 43 deletions

View File

@@ -2,6 +2,7 @@ import { NAVIGATE } from './actions';
const initialState = {
pageName: 'index',
pageState: {},
items: [],
releases: [],
};
@@ -12,6 +13,7 @@ const appReducer = (state = initialState, action = {}) => {
return {
...state,
pageName: action.pageName,
pageState: action.pageState,
}
break;
default: