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