blob: f6c141ae6ae4f4590c566b1ef84989e12f1a2838 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
import { NgModule } from '@angular/core';
import { AccountRoutingModule } from './account-routing.module';
import { AccountComponent } from './account.component';
import { AccountChangePasswordComponent } from './account-change-password';
import { AccountDetailsComponent } from './account-details';
import { AccountService } from './account.service';
import { SharedModule } from '../shared';
@NgModule({
imports: [
AccountRoutingModule,
SharedModule
],
declarations: [
AccountComponent,
AccountChangePasswordComponent,
AccountDetailsComponent
],
exports: [
AccountComponent
],
providers: []
})
export class AccountModule { }
|