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