Project

General

Profile

1
import { NgModule }            from '@angular/core';
2
import { CommonModule }        from '@angular/common';
3
import { FormsModule }         from '@angular/forms';
4

    
5
import {  RouterModule } from "@angular/router";
6

    
7
import {NavigationBarComponent} from './navigationBar.component';
8

    
9

    
10
@NgModule({
11
  imports: [
12
    CommonModule, FormsModule,
13
     RouterModule
14
  ],
15
  declarations: [
16
    NavigationBarComponent,
17

    
18

    
19
  ],
20
  exports: [
21
      NavigationBarComponent
22

    
23
    ]
24
})
25
export class SharedComponentsModule{ }
(2-2/2)