combine containers

This commit is contained in:
Ken
2019-02-13 13:24:57 -08:00
parent 392ebe4a5c
commit 09848e5fe6
12 changed files with 131 additions and 119 deletions

View File

@@ -10,7 +10,7 @@ export const actions = {
edit: (id: string, label: string) => action('edit', { id, label }),
complete: (id: string) => action('complete', { id }),
clear: () => action('clear'),
filter: (filterTypes: string) => action('filter', { filter: filterTypes })
setFilter: (filter: string) => action('setFilter', { filter })
};
export const actionsWithService = {