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