blob: b3c788fcbbee3e73068fe31afe8b684137c15ef8 [file] [log] [blame]
Alex Perryb3168082022-01-22 13:36:13 -08001import {NgModule} from '@angular/core';
2import {BrowserModule} from '@angular/platform-browser';
3import {BrowserAnimationsModule} from '@angular/platform-browser/animations';
Alex Perrybb901052022-03-23 19:46:15 -07004
5import {App} from './app';
Philipp Schrader80587432022-03-05 15:41:22 -08006import {EntryModule} from './entry/entry.module';
Philipp Schrader72beced2022-03-07 05:29:52 -08007import {ImportMatchListModule} from './import_match_list/import_match_list.module';
Ravago Jones2813c032022-03-16 23:44:11 -07008import {MatchListModule} from './match_list/match_list.module';
Alex Perrybb901052022-03-23 19:46:15 -07009import {NotesModule} from './notes/notes.module';
Milo Lin26b2cbb2022-03-26 17:35:20 -070010import {ShiftScheduleModule} from './shift_schedule/shift_schedule.module';
Alex Perryb3168082022-01-22 13:36:13 -080011
12@NgModule({
13 declarations: [App],
14 imports: [
15 BrowserModule,
16 BrowserAnimationsModule,
Philipp Schrader80587432022-03-05 15:41:22 -080017 EntryModule,
Alex Perrybb901052022-03-23 19:46:15 -070018 NotesModule,
Philipp Schrader72beced2022-03-07 05:29:52 -080019 ImportMatchListModule,
Ravago Jones2813c032022-03-16 23:44:11 -070020 MatchListModule,
Milo Lin26b2cbb2022-03-26 17:35:20 -070021 ShiftScheduleModule,
Alex Perryb3168082022-01-22 13:36:13 -080022 ],
23 exports: [App],
24 bootstrap: [App],
25})
Philipp Schrader817cce32022-03-26 15:00:00 -070026export class AppModule {}