UNPKG

generator-angular2-with-router

Version:

A simple angular2 application having 3 pages with angular2 in build router to navigate between pages. It have all basic functionality which a standard angualr2 application needed.

14 lines (10 loc) 288 B
import {NgModule, CUSTOM_ELEMENTS_SCHEMA} from '@angular/core'; import {ManageComponent} from "./manage/components/manage/manage.component"; @NgModule({ declarations: [ ManageComponent ], schemas: [ CUSTOM_ELEMENTS_SCHEMA ] }) export class ManageModule { }