-
Todo App
-
- {/* Stats Bar */}
-
-
-
-
- Total: {stats.total}
-
-
- Active: {stats.active}
-
-
- Completed: {stats.completed}
-
-
-
-
-
-
-
-
-
- {/* Add Item Form */}
-
-
- {/* Filter and Search Bar */}
-
-
-
-
-
-
-
-
setSearchTerm(e.target.value)}
- className="flex-1 px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500"
- />
-
-
-
- {/* Items List */}
-
- {loading ? (
-
Loading...
- ) : filteredItems.length === 0 ? (
-
- {searchTerm ? 'No items match your search.' :
- filter !== 'all' ? `No ${filter} items.` :
- 'No items yet. Create one above!'}
-
- ) : (
- filteredItems.map((item) => (
-
-
-
- toggleItem(item.id, item)}
- className="mr-3 h-5 w-5 text-blue-600"
- />
-
- {item.title}
-
-
- {item.description && (
-
{item.description}
- )}
-
- Created: {new Date(item.created_at).toLocaleString()}
-
-
-
-
- ))
- )}
-
-
-