import { Component, OnInit, Input } from '@angular/core'; @Component({ selector: 'app-profile-logs', templateUrl: './logs.component.html', styles: [] }) export class LogsComponent implements OnInit { @Input() public profile: any; constructor() { } ngOnInit() { } }