You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
837B

  1. import { NgModule } from '@angular/core';
  2. import { CommonModule } from '@angular/common';
  3. import {OverallGroundComponent} from "./overall-ground/overall-ground.component";
  4. import {RouterModule} from "@angular/router";
  5. import {overviewRoutes} from "./overview.routing";
  6. import {MapComponent} from "./map/map.component";
  7. import {SharedMaterialModule} from "../../shared/shared-material.module";
  8. import {MatIconModule} from "@angular/material/icon";
  9. import { CameraStreamComponent } from './camera-stream/camera-stream.component';
  10. import {FormsModule} from "@angular/forms";
  11. @NgModule({
  12. declarations: [
  13. OverallGroundComponent,
  14. MapComponent,
  15. CameraStreamComponent
  16. ],
  17. imports: [
  18. CommonModule,
  19. RouterModule.forChild(overviewRoutes),
  20. SharedMaterialModule,
  21. ]
  22. })
  23. export class OverviewModule { }