feat(aio): add a tinyMCE page, update an angular cli to 1.0.1, setup the polyfills

This commit is contained in:
Alexander Zhukov 2017-04-29 13:40:27 +03:00
parent 50e68f8780
commit 7ce8d8e1c5
31 changed files with 593 additions and 102 deletions

View file

@ -0,0 +1,16 @@
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { RouterModule } from '@angular/router';
import { NgaCardModule } from '@nga/theme';
@NgModule({
exports: [
CommonModule,
FormsModule,
ReactiveFormsModule,
RouterModule,
NgaCardModule,
],
})
export class NgxSharedModule { }