blob: 8c18f7a0efef61f5fbdb81cd124a1c4d7a9429d4 [file] [log] [blame]
import {NgModule} from '@angular/core';
import {BrowserModule} from '@angular/platform-browser';
import {BrowserAnimationsModule} from '@angular/platform-browser/animations';
import {App} from './app';
import {EntryModule} from './entry/entry.module';
import {ImportMatchListModule} from './import_match_list/import_match_list.module';
import {MatchListModule} from './match_list/match_list.module';
import {NotesModule} from './notes/notes.module';
import {ShiftScheduleModule} from './shift_schedule/shift_schedule.module';
import {ViewModule} from './view/view.module';
@NgModule({
declarations: [App],
imports: [
BrowserModule,
BrowserAnimationsModule,
EntryModule,
NotesModule,
ImportMatchListModule,
MatchListModule,
ShiftScheduleModule,
ViewModule,
],
exports: [App],
bootstrap: [App],
})
export class AppModule {}