aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/shared/navbar/navbar.module.ts
blob: 18120a61fb78fd42afef8edab5c0a42c5b3805f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { RouterModule } from '@angular/router';
import { NavbarComponent } from "./navbar.component";

@NgModule({
  imports: [
    RouterModule,
    CommonModule
  ],
  declarations: [ NavbarComponent ],
  exports: [
    NavbarComponent
  ]
})
export class NavbarModule {}