removed universal demo components

This commit is contained in:
Art Lowel
2016-12-01 10:48:10 +01:00
parent 7bd7f32362
commit 28e23f0cdd
33 changed files with 71 additions and 300 deletions

View File

@@ -0,0 +1,19 @@
import { Component, ChangeDetectionStrategy, ViewEncapsulation } 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 = {};
constructor() {
this.universalInit();
}
universalInit() {
}
}