mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 04:57:52 +00:00
24 lines
647 B
TypeScript
24 lines
647 B
TypeScript
import { NgModule, CUSTOM_ELEMENTS_SCHEMA } 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],
|
|
schemas: [CUSTOM_ELEMENTS_SCHEMA]
|
|
})
|
|
export class WelcomePageModule {}
|