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