Files
doneit-web/src/app/pages/welcome/welcome.module.ts
T
2020-08-13 17:44:57 +01:00

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 {}