blob: 2a514f2c0e7fa1ee5c86e9a8655adf5b4ab42e7d [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';
Alex Perryb3168082022-01-22 13:36:13 -08006
7import {App} from './app';
8
9@NgModule({
10 declarations: [App],
11 imports: [
12 BrowserModule,
13 BrowserAnimationsModule,
Philipp Schrader80587432022-03-05 15:41:22 -080014 EntryModule,
Philipp Schrader72beced2022-03-07 05:29:52 -080015 ImportMatchListModule,
Alex Perryb3168082022-01-22 13:36:13 -080016 ],
17 exports: [App],
18 bootstrap: [App],
19})
20export class AppModule {
21}