added initial home page content

This commit is contained in:
Art Lowel
2017-05-18 15:02:33 +02:00
parent e5a885afe7
commit f5e5b72f47
14 changed files with 107 additions and 54 deletions

View File

@@ -1,16 +1,11 @@
import { Component, ChangeDetectionStrategy, ViewEncapsulation } from '@angular/core';
import { Component, OnInit } from '@angular/core';
@Component({
changeDetection: ChangeDetectionStrategy.Default,
encapsulation: ViewEncapsulation.Emulated,
selector: 'ds-home',
styleUrls: ['./home.component.css'],
templateUrl: './home.component.html'
})
export class HomeComponent {
data: any = {};
export class HomeComponent implements OnInit {
constructor() {
this.universalInit();
}
@@ -19,4 +14,6 @@ export class HomeComponent {
}
ngOnInit(): void {
}
}