feat: tags on tasks

This commit is contained in:
2025-04-25 15:20:20 +03:00
parent 320872ddc9
commit e8ded7f2ae
7 changed files with 203 additions and 48 deletions

View File

@@ -1,10 +1,11 @@
export interface ITask {
id: number;
id: string;
name: string;
checked: boolean;
date: Date;
description: string;
tags: string[];
new?: boolean;
}
export interface ITaskForm extends Omit<ITask, "date"> {