15 lines
292 B
TypeScript
15 lines
292 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-pagination',
|
|
templateUrl: './pagination.component.html',
|
|
styleUrls: ['./pagination.component.scss']
|
|
})
|
|
export class PaginationComponent implements OnInit {
|
|
|
|
constructor() { }
|
|
|
|
ngOnInit(): void {
|
|
}
|
|
|
|
}
|