aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/shared/shared-user-settings/shared-user-settings.module.ts
blob: 395f2e3d02ba389eec2e2229d9d1f93cbac7a0aa (plain) (tree)

























                                                                                    
import { NgModule } from '@angular/core'
import { SharedFormModule } from '../shared-forms'
import { SharedMainModule } from '../shared-main/shared-main.module'
import { UserInterfaceSettingsComponent } from './user-interface-settings.component'
import { UserVideoSettingsComponent } from './user-video-settings.component'

@NgModule({
  imports: [
    SharedMainModule,
    SharedFormModule
  ],

  declarations: [
    UserInterfaceSettingsComponent,
    UserVideoSettingsComponent
  ],

  exports: [
    UserInterfaceSettingsComponent,
    UserVideoSettingsComponent
  ],

  providers: [ ]
})
export class SharedUserInterfaceSettingsModule { }