Project

General

Profile

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

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

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

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

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