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