//Send:
this.router.navigate(['action-selection'], { state: { example: 'bar' } });
//Receive:
constructor(private router: Router) {
console.log(this.router.getCurrentNavigation().extras.state.example); // should log out 'bar'
}
this.router.navigate(["heroes"], {some-data: "othrData"})