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