New Angular UI from 1806
[vid.git] / vid-webpack-master / src / app / vlanTagging / vlan-tagging.module.ts
1
2 import { formasync } from './../components/form-async/form-async.component';
3 import {NgModule,} from '@angular/core';
4 import { FormsModule } from '@angular/forms';
5 import { VlanTaggingComponent } from './vlan-tagging.component';
6 import {CommonModule} from '@angular/common';
7 import { BrowserModule } from '@angular/platform-browser';
8 import { NgReduxModule } from '@angular-redux/store';
9 import { SharedModule } from '../shared/shared.module';
10 import { NetworkSelectorComponent } from './network-selector/network-selector.component';
11 import { TooltipModule } from 'ngx-tooltip';
12
13
14
15 @NgModule({
16
17 imports: [
18     CommonModule,
19     NgReduxModule,
20     FormsModule,
21     BrowserModule,
22     TooltipModule,
23     SharedModule.forRoot()
24
25   ],
26   providers: [  ],
27   declarations: [VlanTaggingComponent,formasync,NetworkSelectorComponent],
28   entryComponents: [],
29   exports: [formasync]
30
31 })
32
33 export class VlanTaggingModule { }