import { Component, OnInit, OnDestroy } from '@angular/core'; @Component({ selector: 'cm-button-doc-1', templateUrl: './button-doc-1.component.html', styleUrls: ['./button-doc-1.component.css'] }) export class ButtonDoc1Component implements OnInit, OnDestroy { constructor() { } ngOnInit() { } ngOnDestroy(){ } }