page 404 et début choix humeur

This commit is contained in:
cecilesimplon93 2022-02-15 15:46:31 +01:00
parent acfb169715
commit 50ef04ca86
20 changed files with 11672 additions and 138 deletions

View file

@ -1,6 +0,0 @@
<p>Mon humeur est :</p>
<p>Affichage des items du tableau des humeurs</p>
<app-emoticon> *ngFor ="let tabHumeur of tabHumeur"
[tabHumeur]="tabHumeur"></app-emoticon>

View file

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

View file

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