add componants: recipes and recipeAdd

This commit is contained in:
bastien ollier
2024-06-14 14:27:55 +02:00
parent 4c9548f9af
commit 84649ceda1
7 changed files with 74 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
import { Component } from '@angular/core';
@Component({
selector: 'app-recipe-add',
standalone: true,
imports: [],
templateUrl: './recipe-add.component.html',
})
export class RecipeAddComponent {
}