import { NgModule } from '@angular/core'; import { GlobalNavComponent } from './global-nav.component'; @NgModule({ declarations: [GlobalNavComponent], imports: [ ], exports: [GlobalNavComponent] }) export class GlobalNavModule { }