continuing to build on ui, starting on add recipe

This commit is contained in:
Mikayla Dobson
2022-12-05 18:16:15 -06:00
parent 6b1312018f
commit d8aae8593c
14 changed files with 228 additions and 26 deletions

View File

@@ -29,9 +29,10 @@ export interface IUserAuth {
export interface IRecipe extends HasHistory, CanDeactivate {
name: string
description?: string
preptime: string
authoruserid: string | number
description?: string
ingredients?: string[]
}
export interface IIngredient extends HasHistory {