2022-05-12 16:52:52 -07:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { CommonModule } from '@angular/common';
|
2022-05-13 13:26:38 -07:00
|
|
|
import { PaginationModule } from 'ngx-bootstrap/pagination';
|
|
|
|
import { PagingHeaderComponent } from './components/paging-header/paging-header.component';
|
|
|
|
import { PagerComponent } from './components/pager/pager.component';
|
2022-05-12 16:52:52 -07:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@NgModule({
|
2022-05-13 13:26:38 -07:00
|
|
|
declarations: [
|
|
|
|
PagingHeaderComponent,
|
|
|
|
PagerComponent
|
|
|
|
],
|
2022-05-12 16:52:52 -07:00
|
|
|
imports: [
|
2022-05-13 13:26:38 -07:00
|
|
|
CommonModule,
|
|
|
|
PaginationModule.forRoot()
|
|
|
|
],
|
|
|
|
exports: [
|
|
|
|
PaginationModule,
|
|
|
|
PagingHeaderComponent,
|
|
|
|
PagerComponent
|
2022-05-12 16:52:52 -07:00
|
|
|
]
|
|
|
|
})
|
|
|
|
export class SharedModule { }
|