service api, page home, affiche categ,

install btsrap
This commit is contained in:
Thomas Cardon 2022-01-19 00:20:14 +01:00
parent 4770bd2030
commit e8a924144a
18 changed files with 166 additions and 9 deletions

View file

@ -1 +1,7 @@
<p>card-category works!</p>
<div class="card" style="width: 18rem;">
<img class="card-img-top" src="..." alt="Card image cap">
<div class="card-body">
<h5 class="card-title">{{ categoryData.libelle }}</h5>
<a href="#" class="btn btn-primary">Go somewhere</a>
</div>
</div>

View file

@ -1,4 +1,4 @@
import { Component, OnInit } from '@angular/core';
import { Component, Input, OnInit } from '@angular/core';
@Component({
selector: 'app-card-category',
@ -7,6 +7,8 @@ import { Component, OnInit } from '@angular/core';
})
export class CardCategoryComponent implements OnInit {
@Input() categoryData : any;
constructor() { }
ngOnInit(): void {