create HomeComponent

This commit is contained in:
chsakell
2016-09-26 14:28:45 +03:00
parent fee7d8b8dd
commit 3ebf6f0550
9 changed files with 55 additions and 13 deletions

View File

@@ -0,0 +1,11 @@
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'home',
templateUrl: 'app/home/home.component.html'
})
export class HomeComponent implements OnInit {
constructor() { }
ngOnInit() { }
}