Cleaned up repository and removed errors

This commit is contained in:
Caesar2011
2017-05-17 22:37:56 +02:00
parent 2085314a9b
commit 05e0c1ff3d
14 changed files with 844 additions and 92 deletions

View File

@@ -2,15 +2,9 @@ import { Component } from '@angular/core';
@Component({
selector: 'my-app',
template: `<form #form="ngForm">
<json-input [(ngModel)]="result" name="res"></json-input>
</form>
<p>form is valid: {{ form.valid ? 'true' : 'false' }}</p>
<p>Value:</p>
<pre>{{ result | json }}</pre>`,
templateUrl: './app.component.html'
})
export class AppComponent {
public result = 10;
}