1
0

initial commit

This commit is contained in:
Art Lowel
2016-11-30 15:13:29 +01:00
commit a573556963
50 changed files with 2161 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
import { Component, Inject, ChangeDetectionStrategy, ViewEncapsulation } from '@angular/core';
@Component({
changeDetection: ChangeDetectionStrategy.Default,
encapsulation: ViewEncapsulation.Emulated,
selector: 'lazy',
template: `
<p>
Lazy component
</p>
`
})
export class LazyComponent {
}