Initial commit

This commit is contained in:
Caesar2011
2017-05-17 00:22:45 +02:00
commit 0a36f3830b
19 changed files with 474 additions and 0 deletions

18
src/app/app.module.ts Normal file
View File

@@ -0,0 +1,18 @@
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { AppComponent } from './app.component';
import {JsonInputModule} from "./json-input.module";
import {FormsModule, ReactiveFormsModule} from "@angular/forms";
@NgModule({
imports: [
BrowserModule,
FormsModule,
ReactiveFormsModule,
JsonInputModule,
],
declarations: [ AppComponent ],
bootstrap: [ AppComponent ]
})
export class AppModule { }