add recipe component

This commit is contained in:
bastien ollier
2024-06-14 14:21:56 +02:00
parent b7f6487ad3
commit 4c9548f9af
6 changed files with 49 additions and 3 deletions

View File

@@ -0,0 +1,17 @@
import { Component, Input } from '@angular/core';
@Component({
selector: 'app-recipe',
standalone: true,
imports: [],
templateUrl: './recipe.component.html',
})
export class RecipeComponent {
@Input()
set id(id: string) {
}
}