Ajout pages fav, list-cat + header
This commit is contained in:
parent
125d0862b5
commit
1bcd85fc5c
19 changed files with 146 additions and 6 deletions
1
src/app/pages/favoris-user/favoris-user.component.html
Normal file
1
src/app/pages/favoris-user/favoris-user.component.html
Normal file
|
|
@ -0,0 +1 @@
|
|||
<p>favoris-user works!</p>
|
||||
0
src/app/pages/favoris-user/favoris-user.component.scss
Normal file
0
src/app/pages/favoris-user/favoris-user.component.scss
Normal file
25
src/app/pages/favoris-user/favoris-user.component.spec.ts
Normal file
25
src/app/pages/favoris-user/favoris-user.component.spec.ts
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { FavorisUserComponent } from './favoris-user.component';
|
||||
|
||||
describe('FavorisUserComponent', () => {
|
||||
let component: FavorisUserComponent;
|
||||
let fixture: ComponentFixture<FavorisUserComponent>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
declarations: [ FavorisUserComponent ]
|
||||
})
|
||||
.compileComponents();
|
||||
});
|
||||
|
||||
beforeEach(() => {
|
||||
fixture = TestBed.createComponent(FavorisUserComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
15
src/app/pages/favoris-user/favoris-user.component.ts
Normal file
15
src/app/pages/favoris-user/favoris-user.component.ts
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
import { Component, OnInit } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-favoris-user',
|
||||
templateUrl: './favoris-user.component.html',
|
||||
styleUrls: ['./favoris-user.component.scss']
|
||||
})
|
||||
export class FavorisUserComponent implements OnInit {
|
||||
|
||||
constructor() { }
|
||||
|
||||
ngOnInit(): void {
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue