blob: 2a514f2c0e7fa1ee5c86e9a8655adf5b4ab42e7d [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 {App} from './app';
@NgModule({
declarations: [App],
imports: [
BrowserModule,
BrowserAnimationsModule,
EntryModule,
ImportMatchListModule,
],
exports: [App],
bootstrap: [App],
})
export class AppModule {
}