import { NgModule } from '@angular/core'; import { HttpClientModule } from '@angular/common/http'; import { CommonModule } from '@angular/common'; import { JaxLoginRoutingModule } from './jax-login-routing.module'; import { JaxLoginComponent } from './components/login/jax-login.component'; import { W1Component } from './components/w1/w1.component'; import { W2Component } from './components/w2/w2.component'; @NgModule({ declarations: [JaxLoginComponent, W1Component, W2Component], imports: [ HttpClientModule, CommonModule, JaxLoginRoutingModule ], exports: [ JaxLoginComponent, W1Component, W2Component] }) export class JaxLoginModule { }