import { Component, OnInit } from '@angular/core'; import { FruitService } from '../shared/fruit.service'; @Component({ selector: 'app-teker', templateUrl: './teker.component.html', styleUrls: ['./teker.component.scss'] }) export class TekerComponent implements OnInit { fruits !: string[]; constructor(private fruit: FruitService) { } ngOnInit(): void { this.fruits = this.fruit.getFruits(); } }