information-system-gui/src/main/webapp/app/table-screen-vs/table-screen-vs.module.ts

31 lines
1.2 KiB
TypeScript

import { NgModule } from '@angular/core';
import { SharedModule } from 'app/shared/shared.module';
import { MatTableModule } from '@angular/material/table';
import { MatIconModule } from '@angular/material/icon';
import { MatSortModule } from '@angular/material/sort';
import { MatPaginatorModule } from '@angular/material/paginator';
import { RawjsonPaneComponent } from 'app/rawjson-pane/rawjson-pane.component';
import { MAT_DIALOG_DEFAULT_OPTIONS, MatDialogModule } from '@angular/material/dialog';
import { ResourceAddComponent } from 'app/resource-add/resource-add.component';
import { TypeHeadlineModule } from 'app/type-headline/type-headline.module';
import { AsyncPipe } from '@angular/common';
import { RouterModule } from '@angular/router';
import { TableScreenVsComponent } from './table-screen-vs.component';
@NgModule({
imports: [
SharedModule,MatTableModule,MatIconModule,MatSortModule,
MatPaginatorModule, MatDialogModule, RawjsonPaneComponent,
TypeHeadlineModule, AsyncPipe, RouterModule
],
declarations:[TableScreenVsComponent],
exports: [TableScreenVsComponent],
entryComponents: [ResourceAddComponent],
bootstrap: [TableScreenVsComponent],
})
export class TableScreenVsModule { }