step 9 exercise complete!

This commit is contained in:
Ken
2019-02-20 11:01:57 -08:00
parent 716644aec7
commit dd45492657
27 changed files with 523 additions and 3 deletions

View File

@@ -0,0 +1,14 @@
export type FilterTypes = 'all' | 'active' | 'completed';
export interface TodoItem {
label: string;
completed: boolean;
}
export interface Store {
todos: {
[id: string]: TodoItem;
};
filter: FilterTypes;
}