initial project scaffold

This commit is contained in:
Denys Vuika
2017-10-18 17:16:29 +01:00
commit b41a547e74
31 changed files with 7188 additions and 0 deletions

10
src/app/app.component.ts Normal file
View File

@@ -0,0 +1,10 @@
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
title = 'app';
}