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