refactor: 优化反馈和布局

This commit is contained in:
Ray.Hao
2025-07-21 09:09:24 +08:00
parent 07e9ce725c
commit 030e19084f
15 changed files with 417 additions and 775 deletions

View File

@@ -1,16 +0,0 @@
export interface Todo {
id: string;
title: string;
description?: string;
completed: boolean;
deadline?: string;
priority?: "low" | "medium" | "high";
createdAt: string;
updatedAt?: string;
}
export interface TodoState {
todos: Todo[];
loading: boolean;
error: string | null;
}