aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/todos/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/features/todos/index.ts')
-rw-r--r--src/features/todos/index.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/features/todos/index.ts b/src/features/todos/index.ts
index 2fa8c3130..5465ed48a 100644
--- a/src/features/todos/index.ts
+++ b/src/features/todos/index.ts
@@ -3,6 +3,7 @@ import TodoStore from './store';
3export const todosStore = new TodoStore(); 3export const todosStore = new TodoStore();
4 4
5export default function initTodos(stores: { todos?: any }, actions: any) { 5export default function initTodos(stores: { todos?: any }, actions: any) {
6 // eslint-disable-next-line no-param-reassign
6 stores.todos = todosStore; 7 stores.todos = todosStore;
7 todosStore.start(stores, actions); 8 todosStore.start(stores, actions);
8} 9}