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

View file

@ -0,0 +1,25 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { CardCategoryComponent } from './card-category.component';
describe('CardCategoryComponent', () => {
let component: CardCategoryComponent;
let fixture: ComponentFixture<CardCategoryComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ CardCategoryComponent ]
})
.compileComponents();
});
beforeEach(() => {
fixture = TestBed.createComponent(CardCategoryComponent);
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-category',
templateUrl: './card-category.component.html',
styleUrls: ['./card-category.component.scss']
})
export class CardCategoryComponent implements OnInit {
constructor() { }
ngOnInit(): void {
}
}