aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/todos/index.ts
blob: 2fa8c3130e3412cb06274730ce8ddddcbe4d1636 (plain) (blame)
1
2
3
4
5
6
7
8
import TodoStore from './store';

export const todosStore = new TodoStore();

export default function initTodos(stores: { todos?: any }, actions: any) {
  stores.todos = todosStore;
  todosStore.start(stores, actions);
}