adding a new step to bring in Fabric controls

This commit is contained in:
Ken
2019-02-13 22:02:52 -08:00
parent 24733636ec
commit d0d6a788e2
14 changed files with 343 additions and 17 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;
}