aboutsummaryrefslogtreecommitdiffstats
path: root/vid-webpack-master/src/app/vlanTagging/vlan-tagging.module.ts
blob: 3227542c6661395705f4aa7c3bce6dcc0f66cb17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import { formasync } from './../components/form-async/form-async.component';
import {NgModule,} from '@angular/core';
import { FormsModule } from '@angular/forms';
import { VlanTaggingComponent } from './vlan-tagging.component';
import {CommonModule} from '@angular/common';
import { BrowserModule } from '@angular/platform-browser';
import { NgReduxModule } from '@angular-redux/store';
import { SharedModule } from '../shared/shared.module';
import { NetworkSelectorComponent } from './network-selector/network-selector.component';
import { TooltipModule } from 'ngx-tooltip';



@NgModule({

imports: [
    CommonModule,
    NgReduxModule,
    FormsModule,
    BrowserModule,
    TooltipModule,
    SharedModule.forRoot()

  ],
  providers: [  ],
  declarations: [VlanTaggingComponent,formasync,NetworkSelectorComponent],
  entryComponents: [],
  exports: [formasync]

})

export class VlanTaggingModule { }