import { NgModule } from '@angular/core'; import { SharedModule } from "@shared"; import { xCnameCxRoutingModule } from './xdnamedx-routing.module'; import { xCnameCxListPage } from './list/list.page'; import { xCnameCxEditPage } from './edit/edit.page'; const COMPONENTS = [xCnameCxListPage, xCnameCxEditPage]; @NgModule({ imports: [ SharedModule, xCnameCxRoutingModule ], declarations: [...COMPONENTS] }) export class xCnameCxModule { }