mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-20 21:35:50 +00:00
23 lines
574 B
TypeScript
23 lines
574 B
TypeScript
|
|
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 {}
|