refactor(todo): update TodoListContentProps to include optional id and priority fields that are used in TodoList.jsx

This commit is contained in:
Haileyesus
2026-02-12 19:44:03 +03:00
parent e435e70a6b
commit 553c534f35

View File

@@ -3,9 +3,10 @@ import TodoList from '../../../../TodoList';
interface TodoListContentProps {
todos: Array<{
id?: string;
content: string;
status: string;
activeForm?: string;
priority?: string;
}>;
isResult?: boolean;
}