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 @@
<p>recipes works!</p>

View File

@@ -0,0 +1,23 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { RecipesComponent } from './recipes.component';
describe('RecipesComponent', () => {
let component: RecipesComponent;
let fixture: ComponentFixture<RecipesComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [RecipesComponent]
})
.compileComponents();
fixture = TestBed.createComponent(RecipesComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});

View File

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