import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { InfraPageComponent } from './infra-page.component'; import { InfraPageRoutingModule } from './infra-page-routing.module'; @NgModule({ imports: [ CommonModule, InfraPageRoutingModule ], declarations: [InfraPageComponent] }) export class InfraPageModule { }