blob: 8c18f7a0efef61f5fbdb81cd124a1c4d7a9429d4 [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';
Ishan Katpallydad5f1a2022-03-23 21:06:36 -070011import {ViewModule} from './view/view.module';
Alex Perryb3168082022-01-22 13:36:13 -080012
13@NgModule({
14 declarations: [App],
15 imports: [
16 BrowserModule,
17 BrowserAnimationsModule,
Philipp Schrader80587432022-03-05 15:41:22 -080018 EntryModule,
Alex Perrybb901052022-03-23 19:46:15 -070019 NotesModule,
Philipp Schrader72beced2022-03-07 05:29:52 -080020 ImportMatchListModule,
Ravago Jones2813c032022-03-16 23:44:11 -070021 MatchListModule,
Milo Lin26b2cbb2022-03-26 17:35:20 -070022 ShiftScheduleModule,
Ishan Katpallydad5f1a2022-03-23 21:06:36 -070023 ViewModule,
Alex Perryb3168082022-01-22 13:36:13 -080024 ],
25 exports: [App],
26 bootstrap: [App],
27})
Philipp Schrader817cce32022-03-26 15:00:00 -070028export class AppModule {}