UNPKG

generator-fountain-angular2

Version:

Yeoman Fountain generator to scaffold a webapp with Angular 2 written in ES6 (Babel), TypeScript through Webpack or SystemJS including tools Gulp 4, ESLint, Browsersync and Karma

22 lines (19 loc) 399 B
import {NgModule} from '@angular/core'; import {CommonModule} from '@angular/common'; import {HttpModule} from '@angular/http'; import {TechsComponent} from './techs'; import {TechComponent} from './tech'; @NgModule({ imports: [ CommonModule, HttpModule ], declarations: [ TechsComponent, TechComponent ], exports: [ TechsComponent ] }) export class TechsModule {}