Files
FarmMapsLib/src/app/landingpage/landingpage.component.ts
Willem Dantuma 1991e79ed2
All checks were successful
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good
Add landingpage and lazyloading voor 3d map
2020-11-02 12:24:15 +01:00

20 lines
453 B
TypeScript

import { Component, OnInit } from '@angular/core';
import { ItemService} from '@farmmaps/common';
import { Observable} from 'rxjs';
@Component({
selector: 'app-test',
templateUrl: './landingpage.component.html',
styleUrls: ['./landingpage.component.scss']
})
export class LandingpageComponent implements OnInit {
//public gradientItems:Observable<any[]>
constructor(private itemService$:ItemService) {
}
ngOnInit(): void {
}
}