Lots of changes, started on working /add

This commit is contained in:
2023-06-21 19:50:27 +02:00
parent 4e6291fa5d
commit dc6fd3fad5
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 = {