blob: ead8b37943177e6e8e1d82a4bd4aaafe023e596a [file] [log] [blame]
Philipp Schrader175a93c2023-02-19 13:13:40 -08001import {NgModule} from '@angular/core';
2import {BrowserModule} from '@angular/platform-browser';
3import {BrowserAnimationsModule} from '@angular/platform-browser/animations';
4
5import {App} from './app';
6import {EntryModule} from '../entry';
7import {ImportMatchListModule} from '../import_match_list';
8import {MatchListModule} from '../match_list';
9import {NotesModule} from '../notes';
10import {ShiftScheduleModule} from '../shift_schedule';
11import {ViewModule} from '../view';
12import {DriverRankingModule} from '../driver_ranking';
13
14@NgModule({
15 declarations: [App],
16 imports: [
17 BrowserModule,
18 BrowserAnimationsModule,
19 EntryModule,
20 NotesModule,
21 ImportMatchListModule,
22 MatchListModule,
23 ShiftScheduleModule,
24 DriverRankingModule,
25 ViewModule,
26 ],
27 exports: [App],
28 bootstrap: [App],
29})
30export class AppModule {}