import { Component, OnInit } from '@angular/core'; @Component({ selector: 'app-contact-overview', templateUrl: './contact-overview.component.html', styleUrls: ['./contact-overview.component.css'] }) export class ContactOverviewComponent implements OnInit { constructor() { } ngOnInit() { } }