simpleat/src/app/card-resto/card-resto.component.ts
2022-02-04 14:13:52 +01:00

19 lines
371 B
TypeScript

import { Component, Input, OnInit } from '@angular/core';
@Component({
selector: 'app-card-resto',
templateUrl: './card-resto.component.html',
styleUrls: ['./card-resto.component.scss']
})
export class CardRestoComponent implements OnInit {
@Input() restaurant : any ;
constructor() { }
ngOnInit(): void {
console.log(this.restaurant);
}
}