blob: e560bfcd1bd63e474cee86d1588cac0a10f671e8 [file] [log] [blame]
import {NgModule} from '@angular/core';
import {BrowserModule} from '@angular/platform-browser';
import {BrowserAnimationsModule} from '@angular/platform-browser/animations';
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 {App} from './app';
@NgModule({
declarations: [App],
imports: [
BrowserModule,
BrowserAnimationsModule,
EntryModule,
ImportMatchListModule,
MatchListModule,
],
exports: [App],
bootstrap: [App],
})
export class AppModule {
}