This commit is contained in:
Ole
2026-05-31 20:25:41 +00:00
commit 0a07ab8593
275 changed files with 52660 additions and 0 deletions
@@ -0,0 +1,7 @@
import { useContext } from 'react';
import { TodoContext } from './TodoContext';
import type { TodoStoreValue } from './TodoContext';
export function useTodoList(): TodoStoreValue {
return useContext(TodoContext);
}