Files
doneit-web/src/app/pages/welcome/welcome.module.ts
T

23 lines
574 B
TypeScript
Raw Normal View History

2020-08-05 15:39:16 +01:00
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { FormsModule } from '@angular/forms';
import { IonicModule } from '@ionic/angular';
import { WelcomePageRoutingModule } from './welcome-routing.module';
import { WelcomePage } from './welcome.page';
import { ComponentsModule } from 'src/app/components/components.module';
@NgModule({
imports: [
CommonModule,
FormsModule,
IonicModule,
ComponentsModule,
WelcomePageRoutingModule
],
declarations: [WelcomePage]
})
export class WelcomePageModule {}