Skip to content

Instantly share code, notes, and snippets.

@haverchuck
Created June 19, 2018 16:25
Show Gist options
  • Select an option

  • Save haverchuck/a9de6acc930075bcc34573733f1fbe56 to your computer and use it in GitHub Desktop.

Select an option

Save haverchuck/a9de6acc930075bcc34573733f1fbe56 to your computer and use it in GitHub Desktop.
ionic-amplify-part-1: list.module
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { FormsModule } from '@angular/forms';
import { IonicModule } from '@ionic/angular';
import { ListPage } from './list.page';
import { ListItemModal } from './list.item.modal';
@NgModule({
imports: [
CommonModule,
IonicModule.forRoot(),
FormsModule
],
declarations: [
ListPage,
ListItemModal
],
entryComponents: [
ListItemModal
],
providers: []
})
export class ListModule {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment