angular-test/src/app/list-paginate/list-paginate.component.ts

21 lines
366 B
TypeScript
Raw Normal View History

2020-11-07 11:41:52 +00:00
import { Component, OnInit, Input } from '@angular/core';
2020-11-07 09:58:14 +00:00
@Component({
selector: 'app-list-paginate',
templateUrl: './list-paginate.component.html',
styleUrls: ['./list-paginate.component.styl']
})
export class ListPaginateComponent implements OnInit {
2020-11-07 11:41:52 +00:00
@Input()
page: number;
@Input()
pages: number;
2020-11-07 09:58:14 +00:00
constructor() { }
ngOnInit(): void {
}
}