Blame view
src/app/component/app.module.ts
1.14 KB
632c4ac2f import vessels |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; import { NgxBootstrapIconsModule, allIcons } from 'ngx-bootstrap-icons'; 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'; @NgModule({ declarations: [ AppComponent, NavBarComponent, MapComponent, GraphComponent, ProgressComponent, ImportVesselsComponent, ImportVesselsDirective, ListVesselComponent ], imports: [ BrowserModule, AppRoutingModule, NgxBootstrapIconsModule.pick(allIcons) ], providers: [], bootstrap: [AppComponent] }) export class AppModule { } |