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.

24 lines
706B

  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. @NgModule({
  10. declarations: [
  11. OverallGroundComponent,
  12. MapComponent
  13. ],
  14. imports: [
  15. CommonModule,
  16. RouterModule.forChild(overviewRoutes),
  17. SharedMaterialModule,
  18. MatIconModule
  19. ]
  20. })
  21. export class OverviewModule { }