mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 03:32:21 +08:00
16 lines
415 B
TypeScript
16 lines
415 B
TypeScript
import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
import { AlertPageComponent } from './alert-page.component';
|
|
import { AlertRoutingModule } from './alert-routing.module';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
AlertRoutingModule
|
|
],
|
|
declarations: [AlertPageComponent],
|
|
schemas: [CUSTOM_ELEMENTS_SCHEMA]
|
|
})
|
|
export class AlertModule { }
|