mirror of
https://gitlab.com/walljm/dynamicbible.git
synced 2025-07-28 18:19:48 -04:00
32 lines
956 B
TypeScript
32 lines
956 B
TypeScript
![]() |
import { NgModule, ErrorHandler } from '@angular/core';
|
||
|
import { IonicApp, IonicModule, IonicErrorHandler } from 'ionic-angular';
|
||
|
import { MyApp } from './app.component';
|
||
|
import { BrowserModule } from '@angular/platform-browser';
|
||
|
|
||
|
import {SearchPage} from "../pages/search/search";
|
||
|
import {ComponentLoader} from "../components/component-loader/component-loader.ts";
|
||
|
import {Passage} from "../components/passage/passage.ts";
|
||
|
import {Strongs} from "../components/strongs/strongs.ts";
|
||
|
|
||
|
@NgModule({
|
||
|
declarations: [
|
||
|
MyApp,
|
||
|
SearchPage,
|
||
|
ComponentLoader,
|
||
|
Passage,
|
||
|
Strongs,
|
||
|
],
|
||
|
imports: [
|
||
|
IonicModule.forRoot(MyApp),
|
||
|
BrowserModule,
|
||
|
],
|
||
|
bootstrap: [IonicApp],
|
||
|
entryComponents: [
|
||
|
MyApp,
|
||
|
SearchPage,
|
||
|
Passage,
|
||
|
Strongs,
|
||
|
],
|
||
|
providers: [{ provide: ErrorHandler, useClass: IonicErrorHandler }]
|
||
|
})
|
||
|
export class AppModule { }
|