mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 11:17:19 +08:00
20 lines
420 B
TypeScript
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 { }
|