création composants

This commit is contained in:
Your Name 2022-01-18 17:25:08 +01:00
parent 96899ca70d
commit c4c077fd00
42 changed files with 432 additions and 484 deletions

View file

@ -0,0 +1 @@
<p>card-resto works!</p>

View file

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

View file

@ -0,0 +1,15 @@
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-card-resto',
templateUrl: './card-resto.component.html',
styleUrls: ['./card-resto.component.scss']
})
export class CardRestoComponent implements OnInit {
constructor() { }
ngOnInit(): void {
}
}