Warning, /phoenix-eic-event-display/src/app/app.module.ts is written in an unsupported language. File is not indexed.
0001 import { NgModule } from '@angular/core';
0002 import { BrowserModule } from '@angular/platform-browser';
0003
0004 import { AppRoutingModule } from './app-routing.module';
0005 import { AppComponent } from './app.component';
0006
0007 import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
0008 import { PhoenixUIModule } from 'phoenix-ui-components';
0009
0010 import { RouterModule } from '@angular/router';
0011 import { EicDetectorComponent } from './eic-detector/eic-detector.component';
0012
0013 @NgModule({
0014 declarations: [
0015 AppComponent,
0016 EicDetectorComponent
0017 ],
0018 imports: [
0019 BrowserModule,
0020 AppRoutingModule,
0021 BrowserAnimationsModule,
0022 PhoenixUIModule,
0023 RouterModule.forRoot([{ path: '', component: EicDetectorComponent }])
0024 ],
0025 providers: [],
0026 bootstrap: [AppComponent]
0027 })
0028 export class AppModule { }