Files

21 lines
534 B
TypeScript

import { BrowserModule } from '@angular/platform-browser';
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { AppRoutingModule } from './app-routing.module';
// import { IonicAngularModule } from '../../../src/module';
@NgModule({
declarations: [AppComponent],
imports: [
AppRoutingModule,
BrowserModule,
// IonicAngularModule
],
providers: [],
bootstrap: [AppComponent],
schemas: [CUSTOM_ELEMENTS_SCHEMA]
})
export class AppModule {}