2018-05-10 13:04:16 +02:00
|
|
|
import { NgModule } from '@angular/core';
|
2018-05-10 16:39:05 +02:00
|
|
|
import { BrowserModule } from '@angular/platform-browser';
|
|
|
|
|
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
|
|
|
|
|
import { LayoutModule } from '@angular/cdk/layout';
|
|
|
|
|
import {
|
|
|
|
|
MatToolbarModule,
|
|
|
|
|
MatButtonModule,
|
|
|
|
|
MatSidenavModule,
|
|
|
|
|
MatIconModule,
|
|
|
|
|
MatListModule,
|
|
|
|
|
MatTableModule,
|
|
|
|
|
MatPaginatorModule,
|
|
|
|
|
MatSortModule,
|
|
|
|
|
MatFormFieldModule,
|
|
|
|
|
MatInputModule,
|
|
|
|
|
MatSelectModule,
|
|
|
|
|
MatOptionModule,
|
|
|
|
|
} from '@angular/material';
|
2018-05-10 13:04:16 +02:00
|
|
|
|
|
|
|
|
import { AppRoutingModule } from './app-routing.module';
|
|
|
|
|
import { AppComponent } from './app.component';
|
2018-05-10 16:39:05 +02:00
|
|
|
import { NavigationComponent } from './navigation/navigation.component';
|
|
|
|
|
import { AwardeeListComponent } from './awardee-list/awardee-list.component';
|
|
|
|
|
import { JudgeListComponent } from './judge-list/judge-list.component';
|
|
|
|
|
import { JudgeListTableComponent } from './judge-list-table/judge-list-table.component';
|
|
|
|
|
import { AwardeeListTableComponent } from './awardee-list-table/awardee-list-table.component';
|
|
|
|
|
import { AwardeeEditorComponent } from './awardee-editor/awardee-editor.component';
|
|
|
|
|
import { JudgeEditorComponent } from './judge-editor/judge-editor.component';
|
2018-05-10 13:04:16 +02:00
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
|
declarations: [
|
2018-05-10 16:39:05 +02:00
|
|
|
AppComponent,
|
|
|
|
|
NavigationComponent,
|
|
|
|
|
AwardeeListComponent,
|
|
|
|
|
JudgeListComponent,
|
|
|
|
|
JudgeListTableComponent,
|
|
|
|
|
AwardeeListTableComponent,
|
|
|
|
|
AwardeeEditorComponent,
|
|
|
|
|
JudgeEditorComponent
|
2018-05-10 13:04:16 +02:00
|
|
|
],
|
|
|
|
|
imports: [
|
|
|
|
|
BrowserModule,
|
2018-05-10 16:39:05 +02:00
|
|
|
AppRoutingModule,
|
|
|
|
|
BrowserAnimationsModule,
|
|
|
|
|
LayoutModule,
|
|
|
|
|
MatToolbarModule,
|
|
|
|
|
MatButtonModule,
|
|
|
|
|
MatSidenavModule,
|
|
|
|
|
MatIconModule,
|
|
|
|
|
MatListModule,
|
|
|
|
|
MatTableModule,
|
|
|
|
|
MatPaginatorModule,
|
|
|
|
|
MatSortModule,
|
|
|
|
|
MatFormFieldModule,
|
|
|
|
|
MatInputModule,
|
|
|
|
|
MatSelectModule,
|
|
|
|
|
MatOptionModule,
|
2018-05-10 13:04:16 +02:00
|
|
|
],
|
|
|
|
|
providers: [],
|
|
|
|
|
bootstrap: [AppComponent]
|
|
|
|
|
})
|
|
|
|
|
export class AppModule { }
|