Project

General

Profile

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

    
6
import {BottomComponent} from './bottom.component';
7

    
8
@NgModule({
9
  imports: [
10
    CommonModule, FormsModule, RouterModule
11

    
12
  ],
13
  declarations: [
14
    BottomComponent
15
  ],
16

    
17
  exports: [
18
    BottomComponent
19
    ]
20
})
21
export class BottomModule{ }
(3-3/7)