@RomnEmpire wrote:
Hello to all,
I got error after click click any links in my app sir please check my app.module.ts file tell m what’s the wrong in my code?import { BrowserModule } from '@angular/platform-browser'; import { ErrorHandler, NgModule } from '@angular/core'; import { IonicApp, IonicErrorHandler, IonicModule } from 'ionic-angular'; import { MyApp } from './app.component'; import { HttpClientModule } from '@angular/common/http'; import { SelectField } from '../pages/cmn/select-field/select-field'; import { SelectSubCategory } from '../pages/cmn/select-subCategory/select-subCategory'; import {IonicStorageModule} from '@ionic/storage'; @NgModule({ declarations: [ MyApp, SelectField, SelectSubCategory ], imports: [ BrowserModule, IonicModule.forRoot(MyApp), ColorPickerModule, HttpClientModule, IonicStorageModule.forRoot() ], bootstrap: [IonicApp], entryComponents: [ SelectField, SelectSubCategory ], providers: [ StatusBar, SplashScreen, {provide: ErrorHandler , useClass: IonicErrorHandler} ] }) export class AppModule {}
Posts: 1
Participants: 1