/
/
Todo data model — each todo has a unique ID, text content, a completed flag, and a creation timestamp for sorting.
5 export interface Todo { 6 id: string; 7 text: string; 8 completed: boolean; 9 createdAt: number; 10 // @todo Add a `priority` field (low, medium, high) for sorting 11 }