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

@@ -1,10 +1,11 @@
export const NAVIGATE = 'navigate';
const actions = {
navigate: (pageName, pushToHistory = true) => {
navigate: (pageName, pushToHistory = true, pageState = {}) => {
return {
type: NAVIGATE,
pageName,
pageState,
pushToHistory,
};
},