blob: 395f2e3d02ba389eec2e2229d9d1f93cbac7a0aa (
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
|
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 { }
|