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
import {HelperModule} from "../utils/helper/helper.module";
8

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

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

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