|
123456789101112131415161718192021 |
- import { NgModule } from '@angular/core';
- import { CommonModule } from '@angular/common';
- import { FormsModule } from '@angular/forms';
-
- import { IonicModule } from '@ionic/angular';
-
- import { LivePageRoutingModule } from './live-routing.module';
-
- import { LivePage } from './live.page';
- import { FacebookLoginComponent } from '../components/facebook-login/facebook-login.component';
-
- @NgModule({
- imports: [
- CommonModule,
- FormsModule,
- IonicModule,
- LivePageRoutingModule
- ],
- declarations: [LivePage, FacebookLoginComponent]
- })
- export class LivePageModule {}
|