Blame view

src/app/component/app.module.ts 1.34 KB
de59ffef8   lsagona   add model + search
1
2
3
  import {BrowserModule} from '@angular/platform-browser';
  import {NgModule} from '@angular/core';
  import {allIcons, NgxBootstrapIconsModule} from 'ngx-bootstrap-icons';
632c4ac2f   lsagona   import vessels
4

de59ffef8   lsagona   add model + search
5
6
7
8
9
10
11
12
13
14
  import {AppRoutingModule} from './app-routing.module';
  import {AppComponent} from './app.component';
  import {NavBarComponent} from './nav-bar/nav-bar.component';
  import {MapComponent} from './map/map.component';
  import {GraphComponent} from './graph/graph.component';
  import {ProgressComponent} from './import-vessels/progress/progress.component';
  import {ImportVesselsComponent} from './import-vessels/import-vessels.component';
  import {ImportVesselsDirective} from './import-vessels/import-vessels.directive';
  import {ListVesselComponent} from './list-vessel/list-vessel.component';
  import {AngularSplitModule} from 'angular-split';
8c0f5138e   lsagona   plot arbitrary da...
15
16
17
18
  import {PlotlyModule} from 'angular-plotly.js';
  import * as PlotlyJS from 'plotly.js/dist/plotly.js';
  
  PlotlyModule.plotlyjs = PlotlyJS;
632c4ac2f   lsagona   import vessels
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
  
  @NgModule({
    declarations: [
      AppComponent,
      NavBarComponent,
      MapComponent,
      GraphComponent,
      ProgressComponent,
      ImportVesselsComponent,
      ImportVesselsDirective,
      ListVesselComponent
    ],
    imports: [
      BrowserModule,
      AppRoutingModule,
de59ffef8   lsagona   add model + search
34
35
      NgxBootstrapIconsModule.pick(allIcons),
      AngularSplitModule,
8c0f5138e   lsagona   plot arbitrary da...
36
      PlotlyModule
632c4ac2f   lsagona   import vessels
37
38
39
40
    ],
    providers: [],
    bootstrap: [AppComponent]
  })
de59ffef8   lsagona   add model + search
41
42
  export class AppModule {
  }