Created
June 19, 2018 16:25
-
-
Save haverchuck/a9de6acc930075bcc34573733f1fbe56 to your computer and use it in GitHub Desktop.
ionic-amplify-part-1: list.module
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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