FarmMapsLib/src/app/landingpage/landingpage.component.ts

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 {
}
}