Without importing OnInit and implements
ngOnInit(){
  this.recipies=this.recipeService.getRecipies();
} 
This is still working fine without any complain so why should i use like :
import { Component,EventEmitter,Output , OnInit } from '@angular/core';
export class RecipiesListComponent implements OnInit{}
 
     
     
    