Some checks failed
FarmMaps.Develop/FarmMapsLib/pipeline/head There was a failure building this commit
10 lines
222 B
TypeScript
10 lines
222 B
TypeScript
import { Component, ElementRef } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'aol-content',
|
|
template: '<ng-content></ng-content>',
|
|
})
|
|
export class ContentComponent {
|
|
constructor(public elementRef: ElementRef) {}
|
|
}
|