aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+admin/shared/shared-admin.module.ts
blob: a5c300d1244d510c1e8554b944333f7fa050b3fe (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
import { NgModule } from '@angular/core'
import { SharedMainModule } from '../../shared/shared-main/shared-main.module'
import { UserEmailInfoComponent } from './user-email-info.component'
import { UserRealQuotaInfoComponent } from './user-real-quota-info.component'

@NgModule({
  imports: [
    SharedMainModule
  ],

  declarations: [
    UserRealQuotaInfoComponent,
    UserEmailInfoComponent
  ],

  exports: [
    UserRealQuotaInfoComponent,
    UserEmailInfoComponent
  ],

  providers: []
})
export class SharedAdminModule { }