forked from hazza/dspace-angular
15 lines
316 B
TypeScript
15 lines
316 B
TypeScript
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 {
|
|
}
|