Add home & login component with routing

This commit is contained in:
2018-06-01 17:54:55 -04:00
parent 27e5615f8f
commit 174d1cb327
14 changed files with 170 additions and 30 deletions

View File

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