working version 2

This commit is contained in:
Harivansh Rathi 2024-11-17 21:12:21 -05:00
parent 33a5f26ec1
commit d412046627
4 changed files with 75 additions and 26 deletions

View file

@ -2,4 +2,5 @@ export interface Habit {
id: number;
name: string;
completedDates: string[];
bestStreak: number;
}