overflow-webapp/src/app/pages/infra/infra-page.module.ts
2018-01-30 16:37:35 +09:00

15 lines
371 B
TypeScript

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 { }