blob: b3020c78d2796e5a2e315afc518838a9d156710e (
plain) (
tree)
|
|
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 { }
|