aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/shared-icons/shared-global-icon.module.ts
blob: b3020c78d2796e5a2e315afc518838a9d156710e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { CommonModule } from '@angular/common'
import { NgModule } from '@angular/core'
import { GlobalIconComponent } from './global-icon.component'

@NgModule({
  imports: [
    CommonModule
  ],

  declarations: [
    GlobalIconComponent
  ],

  exports: [
    GlobalIconComponent
  ],

  providers: [ ]
})
export class SharedGlobalIconModule { }