Lots of changes, started on working /add

This commit is contained in:
2023-06-21 19:50:27 +02:00
parent 120781a57a
commit b4223f8eb0
140 changed files with 489 additions and 262 deletions

View File

@@ -31,13 +31,14 @@ export type RecipeModelType = {
list: [{
name: string;
unit: string;
amount: number;
amount: string;
}]
}]
instructions?: [{
name?: string;
steps: [string]
}]
addendum?: string
};
export type BriefRecipeType = {