Add functionalty to add task

This commit is contained in:
2025-05-18 16:15:34 +02:00
parent f72cc8a802
commit 61694e340f
8 changed files with 124 additions and 35 deletions

View File

@@ -2,5 +2,5 @@ export interface Task {
id: number;
name: string;
reward: number;
assigned: number;
assigned: number | null;
}