aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+admin/shared/shared-admin.module.ts
blob: bef7d54ef888062e4850f83bb51c7c29f8cbf750 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import { NgModule } from '@angular/core'
import { SharedMainModule } from '../../shared/shared-main/shared-main.module'
import { UserRealQuotaInfoComponent } from './user-real-quota-info.component'

@NgModule({
  imports: [
    SharedMainModule
  ],

  declarations: [
    UserRealQuotaInfoComponent
  ],

  exports: [
    UserRealQuotaInfoComponent
  ],

  providers: []
})
export class SharedAdminModule { }