add feature to delete recipes when logged in

This commit is contained in:
2025-08-10 14:16:30 +01:00
parent fbb6ce0441
commit 85138a6575
6 changed files with 276 additions and 18 deletions

View File

@@ -51,6 +51,7 @@ export interface Recipe {
difficulty: 'easy' | 'medium' | 'hard';
imageUrl: string;
createdAt: string;
createdBy?: string;
}
export interface User {