fluent theme

This commit is contained in:
Ken
2019-02-15 15:05:27 -08:00
parent 3059b8dd64
commit e4f8ad546b
11 changed files with 321 additions and 30 deletions
+14
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;
}