blob: 9df517ed8626342ae7520ff6644ac7edbd078939 [file] [log] [blame]
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { PleRoutingModule } from './ple-routing.module';
import { PleComponent } from './ple.component';
import { PleSharedMaterialModule } from './ple-shared-material/ple-shared-material.module';
@NgModule({
declarations: [PleComponent],
imports: [
CommonModule,
PleRoutingModule,
PleSharedMaterialModule
]
})
export class PleModule { }