diff --git a/angular/official/blank/src/app/components/components.ts b/angular/official/blank/src/app/components/components.ts deleted file mode 100644 index 16fc7ae40..000000000 --- a/angular/official/blank/src/app/components/components.ts +++ /dev/null @@ -1,15 +0,0 @@ -import { NgModule } from '@angular/core'; -import { CommonModule } from '@angular/common'; -import { FormsModule } from '@angular/forms'; -import { IonicModule } from '@ionic/angular'; - -@NgModule({ - imports: [ - CommonModule, - FormsModule, - IonicModule.forRoot(), - ], - declarations: [], - entryComponents: [], -}) -export class ComponentsModule {} diff --git a/angular/official/sidemenu/src/app/app.module.ts b/angular/official/sidemenu/src/app/app.module.ts index ae46f0836..e5222fdab 100644 --- a/angular/official/sidemenu/src/app/app.module.ts +++ b/angular/official/sidemenu/src/app/app.module.ts @@ -8,7 +8,6 @@ import { StatusBar } from '@ionic-native/status-bar/ngx'; import { AppComponent } from './app.component'; import { AppRoutingModule } from './app-routing.module'; -import { ComponentsModule } from './components/components.module'; @NgModule({ declarations: [AppComponent], @@ -16,8 +15,7 @@ import { ComponentsModule } from './components/components.module'; imports: [ BrowserModule, IonicModule.forRoot(), - AppRoutingModule, - ComponentsModule + AppRoutingModule ], providers: [ StatusBar, diff --git a/angular/official/sidemenu/src/app/components/components.module.ts b/angular/official/sidemenu/src/app/components/components.module.ts deleted file mode 100644 index 16fc7ae40..000000000 --- a/angular/official/sidemenu/src/app/components/components.module.ts +++ /dev/null @@ -1,15 +0,0 @@ -import { NgModule } from '@angular/core'; -import { CommonModule } from '@angular/common'; -import { FormsModule } from '@angular/forms'; -import { IonicModule } from '@ionic/angular'; - -@NgModule({ - imports: [ - CommonModule, - FormsModule, - IonicModule.forRoot(), - ], - declarations: [], - entryComponents: [], -}) -export class ComponentsModule {} diff --git a/angular/official/tabs/src/app/components/components.module.ts b/angular/official/tabs/src/app/components/components.module.ts deleted file mode 100644 index 16fc7ae40..000000000 --- a/angular/official/tabs/src/app/components/components.module.ts +++ /dev/null @@ -1,15 +0,0 @@ -import { NgModule } from '@angular/core'; -import { CommonModule } from '@angular/common'; -import { FormsModule } from '@angular/forms'; -import { IonicModule } from '@ionic/angular'; - -@NgModule({ - imports: [ - CommonModule, - FormsModule, - IonicModule.forRoot(), - ], - declarations: [], - entryComponents: [], -}) -export class ComponentsModule {}