Files
2018-03-12 16:02:25 -04:00

20 lines
420 B
TypeScript

import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
import { CommonModule } from '@angular/common';
import { PageThree } from './page-three';
import { PageThreeRoutingModule } from './page-three-routing.module';
@NgModule({
imports: [
CommonModule,
PageThreeRoutingModule
],
declarations: [
PageThree
],
schemas: [
CUSTOM_ELEMENTS_SCHEMA
]
})
export class PageThreeModule { }