Skip to content

Instantly share code, notes, and snippets.

@samarthagarwal
Created September 3, 2018 10:39
Show Gist options
  • Save samarthagarwal/06704f2405ec540ccee9cbd7d3044ae9 to your computer and use it in GitHub Desktop.
Save samarthagarwal/06704f2405ec540ccee9cbd7d3044ae9 to your computer and use it in GitHub Desktop.
import { Injectable } from '@angular/core';
@Injectable({
providedIn: 'root'
})
export class NavigationService {
navParams: any;
constructor() { }
setData(data: any) {
this.navParams = data;
}
getData() {
return this.navParams;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment