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