2017-12-19 13:53:46 +01:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
|
|
|
|
import { RouterModule } from "@angular/router";
|
|
|
|
|
|
|
|
import {NavigationBarComponent} from './navigationBar.component';
|
|
|
|
|
|
|
|
import {UserMiniComponent} from '../login/userMini.component';
|
2018-01-11 11:55:54 +01:00
|
|
|
import { ConfigurationServiceModule } from '../utils/configuration/configurationService.module';
|
2017-12-19 13:53:46 +01:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
|
|
|
CommonModule, FormsModule,
|
2018-01-11 11:55:54 +01:00
|
|
|
RouterModule, ConfigurationServiceModule
|
2017-12-19 13:53:46 +01:00
|
|
|
],
|
|
|
|
declarations: [
|
2018-01-11 11:55:54 +01:00
|
|
|
NavigationBarComponent, UserMiniComponent
|
2017-12-19 13:53:46 +01:00
|
|
|
],
|
2018-02-05 14:14:59 +01:00
|
|
|
providers:[],
|
2017-12-19 13:53:46 +01:00
|
|
|
exports: [
|
2018-01-11 11:55:54 +01:00
|
|
|
NavigationBarComponent,UserMiniComponent
|
2017-12-19 13:53:46 +01:00
|
|
|
]
|
|
|
|
})
|
2018-01-11 11:55:54 +01:00
|
|
|
export class NavigationBarModule{ }
|