summaryrefslogtreecommitdiffstats
path: root/vid-webpack-master/src/app/vlanTagging/vlan-tagging.module.ts
blob: c3848998eb7874adcbade05b3d27d84476897389 (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
import { Formasync } from './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';
import {FormAsyncService} from "./form-async/form-async.service";

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

  ],
  providers: [ FormAsyncService ],
  declarations: [VlanTaggingComponent, Formasync, NetworkSelectorComponent],
  entryComponents: [],
  exports: [Formasync]
})

export class VlanTaggingModule { }