aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/shared-actor-image-edit/shared-actor-image-edit.module.ts
blob: c9c6472b9278009fccd2b0c567d08632fef9689a (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
29
import { CommonModule } from '@angular/common'
import { NgModule } from '@angular/core'
import { SharedGlobalIconModule } from '../shared-icons'
import { SharedMainModule } from '../shared-main'
import { ActorAvatarEditComponent } from './actor-avatar-edit.component'
import { ActorBannerEditComponent } from './actor-banner-edit.component'

@NgModule({
  imports: [
    CommonModule,

    SharedMainModule,
    SharedGlobalIconModule
  ],

  declarations: [
    ActorAvatarEditComponent,
    ActorBannerEditComponent
  ],

  exports: [
    ActorAvatarEditComponent,
    ActorBannerEditComponent
  ],

  providers: [ ]
})
export class SharedActorImageEditModule { }