import { Injectable } from "@angular/core"; import { Subject } from "rxjs"; @Injectable() export class LandingService { private homeAction = new Subject(); homeAction$ = this.homeAction.asObservable(); send(change:any){this.homeAction.next(change);} }