Skip to content

Instantly share code, notes, and snippets.

@kutanov
Created December 19, 2019 11:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kutanov/f72fff728065671844a33bc3d8f4a301 to your computer and use it in GitHub Desktop.
Save kutanov/f72fff728065671844a33bc3d8f4a301 to your computer and use it in GitHub Desktop.
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { FormsModule } from '@angular/forms';
import { IonicModule } from '@ionic/angular';
import { AboutPage } from './about';
import { PopoverPage } from '../about-popover/about-popover';
import { AboutPageRoutingModule } from './about-routing.module';
import { TranslateModule } from '@ngx-translate/core';
@NgModule({
imports: [
CommonModule,
FormsModule,
IonicModule,
AboutPageRoutingModule,
TranslateModule.forChild()
],
declarations: [AboutPage, PopoverPage],
entryComponents: [PopoverPage],
bootstrap: [AboutPage],
})
export class AboutModule {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment