blob: e560bfcd1bd63e474cee86d1588cac0a10f671e8 [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';
Philipp Schrader80587432022-03-05 15:41:22 -08004import {EntryModule} from './entry/entry.module';
Philipp Schrader72beced2022-03-07 05:29:52 -08005import {ImportMatchListModule} from './import_match_list/import_match_list.module';
Ravago Jones2813c032022-03-16 23:44:11 -07006import {MatchListModule} from './match_list/match_list.module';
Alex Perryb3168082022-01-22 13:36:13 -08007
8import {App} from './app';
9
10@NgModule({
11 declarations: [App],
12 imports: [
13 BrowserModule,
14 BrowserAnimationsModule,
Philipp Schrader80587432022-03-05 15:41:22 -080015 EntryModule,
Philipp Schrader72beced2022-03-07 05:29:52 -080016 ImportMatchListModule,
Ravago Jones2813c032022-03-16 23:44:11 -070017 MatchListModule,
Alex Perryb3168082022-01-22 13:36:13 -080018 ],
19 exports: [App],
20 bootstrap: [App],
21})
22export class AppModule {
23}